Uses of Class
org.opends.server.types.DisconnectReason
-
Packages that use DisconnectReason Package Description org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.api.plugin Defines the Directory Server plugin API.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers.org.opends.server.protocols.jmx Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using JMX.org.opends.server.protocols.ldap Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using LDAPv3.org.opends.server.types Contains implementations for a number of Directory Server data types.org.opends.server.types.operation Contains a number of interfaces that are implemented by the various types of Directory Server operations. -
-
Uses of DisconnectReason in org.opends.server.api
Methods in org.opends.server.api with parameters of type DisconnectReason Modifier and Type Method Description abstract void
ClientConnection. disconnect(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
Closes the connection to the client, optionally sending it a message indicating the reason for the closure. -
Uses of DisconnectReason in org.opends.server.api.plugin
Methods in org.opends.server.api.plugin that return DisconnectReason Modifier and Type Method Description DisconnectReason
PluginResult.PostConnect. getDisconnectReason()
The disconnect reason that provides the generic cause for the disconnect.Methods in org.opends.server.api.plugin with parameters of type DisconnectReason Modifier and Type Method Description static PluginResult.PostConnect
PluginResult.PostConnect. disconnectClient(DisconnectReason disconnectReason, boolean sendDisconnectNotification, LocalizableMessage errorMessage)
Defines a new stop processing post connect plugin result.PluginResult.PostDisconnect
DirectoryServerPlugin. doPostDisconnect(ClientConnection clientConnection, DisconnectReason disconnectReason, LocalizableMessage message)
Performs any processing that should be done whenever a client connection is closed (regardless of whether the closure is initiated by the client or the server). -
Uses of DisconnectReason in org.opends.server.core
Methods in org.opends.server.core with parameters of type DisconnectReason Modifier and Type Method Description PluginResult.PostDisconnect
PluginConfigManager. invokePostDisconnectPlugins(ClientConnection clientConnection, DisconnectReason disconnectReason, LocalizableMessage message)
Invokes the set of post-disconnect plugins that have been configured in the Directory Server. -
Uses of DisconnectReason in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type DisconnectReason Modifier and Type Method Description static void
AccessLogger. logDisconnect(ClientConnection clientConnection, DisconnectReason disconnectReason, LocalizableMessage message)
Writes a message to the access logger with information about the termination of an existing client connection.void
AccessLogPublisher. logDisconnect(ClientConnection clientConnection, DisconnectReason disconnectReason, LocalizableMessage message)
Writes a message to the access logger with information about the termination of an existing client connection.void
TextAccessLogPublisher. logDisconnect(ClientConnection clientConnection, DisconnectReason disconnectReason, LocalizableMessage message)
-
Uses of DisconnectReason in org.opends.server.protocols.jmx
Methods in org.opends.server.protocols.jmx with parameters of type DisconnectReason Modifier and Type Method Description void
JmxClientConnection. disconnect(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
void
JmxClientConnection. disconnectWithoutUnbind(DisconnectReason disconnectReason, LocalizableMessage message)
Closes the connection to the client, optionally sending it a message indicating the reason for the closure. -
Uses of DisconnectReason in org.opends.server.protocols.ldap
Methods in org.opends.server.protocols.ldap with parameters of type DisconnectReason Modifier and Type Method Description void
LdapClientConnection. disconnect(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
-
Uses of DisconnectReason in org.opends.server.types
Methods in org.opends.server.types that return DisconnectReason Modifier and Type Method Description static DisconnectReason
DisconnectReason. valueOf(String name)
Returns the enum constant of this type with the specified name.static DisconnectReason[]
DisconnectReason. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.opends.server.types with parameters of type DisconnectReason Modifier and Type Method Description void
Operation. disconnectClient(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
-
Uses of DisconnectReason in org.opends.server.types.operation
Methods in org.opends.server.types.operation with parameters of type DisconnectReason Modifier and Type Method Description void
PluginOperation. disconnectClient(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
Terminates the client connection being used to process this operation.
-