Class SASLClientBindHandler

java.lang.Object
com.unboundid.ldap.sdk.SASLClientBindHandler

This class provides a mechanism for performing a SASL bind operation (or set of operations) using a Java SaslClient to perform all of the SASL-related processing. This also supports enabling communication security for SASL mechanisms that support the auth-int or auth-conf quality of protection mechanisms.
  • Constructor Details

    • SASLClientBindHandler

      public SASLClientBindHandler(@NotNull SASLBindRequest bindRequest, @NotNull LDAPConnection connection, @NotNull String mechanism, @NotNull SaslClient saslClient, @Nullable Control[] controls, long responseTimeoutMillis, @NotNull List<String> unhandledCallbackMessages)
      Creates a new SASL client with the provided information.
      Parameters:
      bindRequest - The SASL bind request being processed. This must not be null.
      connection - The connection to use to communicate with the directory server. This must not be null.
      mechanism - The name of the SASL mechanism to use. This must not be null or empty.
      saslClient - The Java SASL client instance to use to perform the processing. This must not be null.
      controls - The set of controls to include in the request. This may be null or empty if no controls should be included in the request.
      responseTimeoutMillis - The maximum length of time in milliseconds to wait for a response from the server. A value that is less than or equal to zero indicates that no timeout should be enforced.
      unhandledCallbackMessages - A list that will be updated with messages about any unhandled callbacks. This list must be managed by the bind request class, which should update it if its CallbackHandler.handle method is invoked with one or more callbacks that it does not handle or support. It must not be null.
  • Method Details

    • processSASLBind

      Performs a SASL bind against an LDAP directory server.
      Returns:
      The result of the bind operation processing.
      Throws:
      LDAPException - If a problem occurs while processing the bind.
    • getMessageID

      public int getMessageID()
      Retrieves the message ID for the last message in the exchange with the directory server.
      Returns:
      The message for the last message in the exchange with the directory server.