Enum AccessLogOperationType
java.lang.Object
java.lang.Enum<AccessLogOperationType>
com.unboundid.ldap.sdk.unboundidds.logs.AccessLogOperationType
- All Implemented Interfaces:
Serializable,Comparable<AccessLogOperationType>,java.lang.constant.Constable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public enum AccessLogOperationType
extends Enum<AccessLogOperationType>
This enum defines the set of access log operation types.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe operation type that will be used for messages about abandon operations.The operation type that will be used for messages about add operations.The operation type that will be used for messages about bind operations.The operation type that will be used for messages about compare operations.The operation type that will be used for messages about delete operations.The operation type that will be used for messages about extended operations.The operation type that will be used for messages about modify DN operations.The operation type that will be used for messages about modify operations.The operation type that will be used for messages about search operations.The operation type that will be used for messages about unbind operations. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessLogOperationTypeRetrieves the access log operation type with the provided identifier.Retrieves the string that will be used to identify this operation type in log files.static AccessLogOperationTypeReturns the enum constant of this type with the specified name.static AccessLogOperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ABANDON
The operation type that will be used for messages about abandon operations. -
ADD
The operation type that will be used for messages about add operations. -
BIND
The operation type that will be used for messages about bind operations. -
COMPARE
The operation type that will be used for messages about compare operations. -
DELETE
The operation type that will be used for messages about delete operations. -
EXTENDED
The operation type that will be used for messages about extended operations. -
MODIFY
The operation type that will be used for messages about modify operations. -
MODDN
The operation type that will be used for messages about modify DN operations. -
SEARCH
The operation type that will be used for messages about search operations. -
UNBIND
The operation type that will be used for messages about unbind operations.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getLogIdentifier
Retrieves the string that will be used to identify this operation type in log files.- Returns:
- The string that will be used to identify this operation type in log files.
-
forName
Retrieves the access log operation type with the provided identifier.- Parameters:
logIdentifier- The identifier string for which to retrieve the corresponding access log operation type.- Returns:
- The appropriate operation type, or
nullif there is no operation type associated with the provided identifier.
-