Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
package org.apache.kafka.common.audit;
import java.util.UUID;
public interface AuditEvent {
    /**
     * Get the unique event id.
     *
     * @return the uuid
     */
    UUID uuid();
	
    /**
     * Get the request context.
     *
     * @return {@link org.apache.kafka.common.requests.RequestContext}
     */
    RequestContext requestContext();
}

...