Package org.opends.server.extensions
Class StartTLSExtendedOperation
- java.lang.Object
-
- org.opends.server.api.ExtendedOperationHandler<StartTlsExtendedOperationHandlerCfg>
-
- org.opends.server.extensions.StartTLSExtendedOperation
-
public final class StartTLSExtendedOperation extends ExtendedOperationHandler<StartTlsExtendedOperationHandlerCfg>
This class provides an implementation of the StartTLS extended operation as defined in RFC 2830. It can enable the TLS connection security provider on an established connection upon receiving an appropriate request from a client.
-
-
Constructor Summary
Constructors Constructor Description StartTLSExtendedOperation()
Create an instance of this StartTLS extended operation handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExtendedOperationName()
Retrieves the name associated with this extended operation.String
getExtendedOperationOID()
Retrieves the object OID associated with this extended operation.void
processExtendedOperation(ExtendedOperation operation)
Processes the provided extended operation.-
Methods inherited from class org.opends.server.api.ExtendedOperationHandler
finalizeExtendedOperationHandler, getServerContext, getSupportedControls, getSupportedFeatures, initializeExtendedOperationHandler, isConfigurationAcceptable, supportsControl
-
-
-
-
Method Detail
-
processExtendedOperation
public void processExtendedOperation(ExtendedOperation operation)
Description copied from class:ExtendedOperationHandler
Processes the provided extended operation.- Specified by:
processExtendedOperation
in classExtendedOperationHandler<StartTlsExtendedOperationHandlerCfg>
- Parameters:
operation
- The extended operation to be processed.
-
getExtendedOperationOID
public String getExtendedOperationOID()
Description copied from class:ExtendedOperationHandler
Retrieves the object OID associated with this extended operation.- Specified by:
getExtendedOperationOID
in classExtendedOperationHandler<StartTlsExtendedOperationHandlerCfg>
- Returns:
- the oid associated with this extended operation, if any, or
null
if there is none.
-
getExtendedOperationName
public String getExtendedOperationName()
Description copied from class:ExtendedOperationHandler
Retrieves the name associated with this extended operation.- Specified by:
getExtendedOperationName
in classExtendedOperationHandler<StartTlsExtendedOperationHandlerCfg>
- Returns:
- The name associated with this extended operation, if any, or
null
if there is none.
-
-