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 includesSslOptions
which 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 SslOptions
getSslOptions()
Returns theSslOptions
used to install the TLS layer.StartTlsExtendedResult
setSslOptions(SslOptions sslOptions)
Sets theSslOptions
used 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 theSslOptions
used to install the TLS layer.- Returns:
- The
SslOptions
ornull
if the request failed.
-
setSslOptions
StartTlsExtendedResult setSslOptions(SslOptions sslOptions)
Sets theSslOptions
used to install the TLS layer.- Parameters:
sslOptions
- TheSslOptions
which should be used to secure the connection.- Returns:
- This result.
-
-