Interface StartTlsExtendedResult
-
- All Superinterfaces:
ExtendedResult,ProtocolOp,Response,Result
public interface StartTlsExtendedResult extends ExtendedResult
The start tls extended result as defined in RFC 4511. The result includesSslOptionswhich will be used to enable the TLS layer only if the start-tls request succeeded.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SslOptionsgetSslOptions()Returns theSslOptionsused to install the TLS layer.StartTlsExtendedResultsetSslOptions(SslOptions sslOptions)Sets theSslOptionsused to install the TLS layer.-
Methods inherited from interface org.forgerock.opendj.ldap.messages.ExtendedResult
addControl, addControls, addReferralUri, getCause, getControl, getControls, getDiagnosticMessage, getDiagnosticMessageAsString, getMatchedDn, getOid, getReferralUris, getResultCode, getValue, hasValue, isReferral, isSuccess, setCause, setDiagnosticMessage, setMatchedDn, setMatchedDn, setResultCode
-
Methods inherited from interface org.forgerock.opendj.ldap.messages.ProtocolOp
containsControl, getControl
-
-
-
-
Method Detail
-
getSslOptions
SslOptions getSslOptions()
Returns theSslOptionsused to install the TLS layer.- Returns:
- The
SslOptionsornullif the request failed.
-
setSslOptions
StartTlsExtendedResult setSslOptions(SslOptions sslOptions)
Sets theSslOptionsused to install the TLS layer.- Parameters:
sslOptions- TheSslOptionswhich should be used to secure the connection.- Returns:
- This result.
-
-