Interface BindResult
-
- All Superinterfaces:
GenericResult
,Result
- All Known Subinterfaces:
UpdatableBindResult
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface BindResult extends GenericResult
This interface defines a set of methods which may be used to interact with bind results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ASN1OctetString
getServerSASLCredentials()
Retrieves the server SASL credentials for the bind result, if any.BindResult
toLDAPSDKResult()
Retrieves an LDAP SDK representation of this bind result.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.GenericResult
getAdditionalLogMessage, getDiagnosticMessage, getMatchedDN, getReferralURLs, getResultCode
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Result
getOperationType, getResultControls
-
-
-
-
Method Detail
-
getServerSASLCredentials
ASN1OctetString getServerSASLCredentials()
Retrieves the server SASL credentials for the bind result, if any.- Returns:
- The server SASL credentials for the bind result, or
null
if there are none.
-
toLDAPSDKResult
BindResult toLDAPSDKResult()
Retrieves an LDAP SDK representation of this bind result.- Specified by:
toLDAPSDKResult
in interfaceGenericResult
- Returns:
- An LDAP SDK representation of this bind result.
-
-