public abstract class AuditEventType extends Object
create(String) method expects an event type string with the following format:
namespace:object:action
Examples:
server:message_input:create
pipeline-processor:configuration:update| Constructor and Description |
|---|
AuditEventType() |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
action() |
static AuditEventType |
create(String type)
Creates
AuditEventType from an audit event type string with the following format. |
static AuditEventType |
create(String namespace,
String object,
String action) |
abstract String |
namespace() |
abstract String |
object() |
String |
toTypeString() |
public abstract String namespace()
public abstract String object()
public abstract String action()
public String toTypeString()
public static AuditEventType create(String namespace, String object, String action)
public static AuditEventType create(@Nonnull String type)
AuditEventType from an audit event type string with the following format.
namespace:object:action
See class documentation for details.type - the audit event type stringCopyright © 2012–2021 Graylog, Inc.. All rights reserved.