Enum AccessLogMessageType
- All Implemented Interfaces:
Serializable,Comparable<AccessLogMessageType>,java.lang.constant.Constable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public enum AccessLogMessageType
extends Enum<AccessLogMessageType>
This enum defines the set of access log message 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 message type that will be used for messages about the result of replication assurance processing.The message type that will be used for messages about connections established to the Directory Server.The message type that will be used for messages about connections established to the Directory Server.The message type that will be used for messages about connections disconnected from the Directory Server.The message type that will be used for messages about search result entries returned by the Directory Server.The message type that will be used for messages that provide information about the beginning of an entry-rebalancing operation.The message type that will be used for messages that provide information about the result of an entry-rebalancing operation.The message type that will be used for messages about operations forwarded to another server.The message type that will be used for messages about failed attempts to forward a request to another server.The message type that will be used for intermediate response messages.The message type that will be used for messages about search result references returned by the Directory Server.The message type that will be used for messages about operation requests received from the Directory Server.The message type that will be used for messages about operation results, which may include responses sent to clients or results for operations with no response.The message type that will be used for messages about the processing performed to negotiate a secure form of communication between the client and the server. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessLogMessageTypeRetrieves the access log message type with the provided identifier.Retrieves the string that will be used to identify this message type in log files.static AccessLogMessageTypeReturns the enum constant of this type with the specified name.static AccessLogMessageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ASSURANCE_COMPLETE
The message type that will be used for messages about the result of replication assurance processing. -
CLIENT_CERTIFICATE
The message type that will be used for messages about connections established to the Directory Server. -
CONNECT
The message type that will be used for messages about connections established to the Directory Server. -
DISCONNECT
The message type that will be used for messages about connections disconnected from the Directory Server. -
ENTRY
The message type that will be used for messages about search result entries returned by the Directory Server. -
ENTRY_REBALANCING_REQUEST
The message type that will be used for messages that provide information about the beginning of an entry-rebalancing operation. -
ENTRY_REBALANCING_RESULT
The message type that will be used for messages that provide information about the result of an entry-rebalancing operation. -
FORWARD
The message type that will be used for messages about operations forwarded to another server. -
FORWARD_FAILED
The message type that will be used for messages about failed attempts to forward a request to another server. -
INTERMEDIATE_RESPONSE
The message type that will be used for intermediate response messages. -
REFERENCE
The message type that will be used for messages about search result references returned by the Directory Server. -
REQUEST
The message type that will be used for messages about operation requests received from the Directory Server. -
RESULT
The message type that will be used for messages about operation results, which may include responses sent to clients or results for operations with no response. -
SECURITY_NEGOTIATION
The message type that will be used for messages about the processing performed to negotiate a secure form of communication between the client and the server.
-
-
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 message type in log files.- Returns:
- The string that will be used to identify this message type in log files.
-
forName
Retrieves the access log message type with the provided identifier.- Parameters:
logIdentifier- The identifier string for which to retrieve the corresponding access log message type.- Returns:
- The appropriate message type, or
nullif there is no message type associated with the provided identifier.
-