Class SimpleBindRequest

All Implemented Interfaces:
ProtocolOp, ReadOnlyLDAPRequest, Serializable

This class implements the processing necessary to perform an LDAPv3 simple bind operation, which authenticates using a bind DN and password.
See Also:
  • Constructor Details

    • SimpleBindRequest

      Creates a new simple bind request that may be used to perform an anonymous bind to the directory server (i.e., with a zero-length bind DN and a zero-length password).
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable String bindDN, @Nullable String password)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable String bindDN, @Nullable byte[] password)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable DN bindDN, @Nullable String password)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable DN bindDN, @Nullable byte[] password)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable String bindDN, @Nullable String password, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
      controls - The set of controls for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable String bindDN, @Nullable byte[] password, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
      controls - The set of controls for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable DN bindDN, @Nullable String password, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
      controls - The set of controls for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@Nullable DN bindDN, @Nullable byte[] password, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and password.
      Parameters:
      bindDN - The bind DN for this simple bind request.
      password - The password for this simple bind request.
      controls - The set of controls for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@NotNull String bindDN, @NotNull PasswordProvider passwordProvider, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and that will use a password provider in order to obtain the bind password.
      Parameters:
      bindDN - The bind DN for this simple bind request. It must not be null.
      passwordProvider - The password provider that will be used to obtain the password for this simple bind request. It must not be null.
      controls - The set of controls for this simple bind request.
    • SimpleBindRequest

      public SimpleBindRequest(@NotNull DN bindDN, @NotNull PasswordProvider passwordProvider, @Nullable Control... controls)
      Creates a new simple bind request with the provided bind DN and that will use a password provider in order to obtain the bind password.
      Parameters:
      bindDN - The bind DN for this simple bind request. It must not be null.
      passwordProvider - The password provider that will be used to obtain the password for this simple bind request. It must not be null.
      controls - The set of controls for this simple bind request.
  • Method Details

    • getBindDN

      Retrieves the bind DN for this simple bind request.
      Returns:
      The bind DN for this simple bind request.
    • getPassword

      Retrieves the password for this simple bind request, if no password provider has been configured.
      Returns:
      The password for this simple bind request, or null if a password provider will be used to obtain the password.
    • getPasswordProvider

      Retrieves the password provider for this simple bind request, if defined.
      Returns:
      The password provider for this simple bind request, or null if this bind request was created with an explicit password rather than a password provider.
    • getProtocolOpType

      public byte getProtocolOpType()
      Retrieves the BER type for this protocol op.
      Specified by:
      getProtocolOpType in interface ProtocolOp
      Returns:
      The BER type for this protocol op.
    • writeTo

      public void writeTo(@NotNull ASN1Buffer buffer)
      Writes an ASN.1-encoded representation of this LDAP protocol op to the provided ASN.1 buffer. This method is intended for internal use only and should not be used by third-party code.
      Specified by:
      writeTo in interface ProtocolOp
      Parameters:
      buffer - The ASN.1 buffer to which the encoded representation should be written.
    • encodeProtocolOp

      Encodes this protocol op to an ASN.1 element suitable for inclusion in an encoded LDAP message. Use of this method is only supported if the bind request was created with a static password. It is not allowed if the password will be obtained through a password provider.
      Specified by:
      encodeProtocolOp in interface ProtocolOp
      Returns:
      The ASN.1 element containing the encoded protocol op.
      Throws:
      LDAPSDKUsageException - If this bind request was created with a password provider rather than a static password.
    • process

      @NotNull protected BindResult process(@NotNull LDAPConnection connection, int depth) throws LDAPException
      Sends this bind request to the target server over the provided connection and returns the corresponding response.
      Specified by:
      process in class BindRequest
      Parameters:
      connection - The connection to use to send this bind request to the server and read the associated response.
      depth - The current referral depth for this request. It should always be one for the initial request, and should only be incremented when following referrals.
      Returns:
      The bind response read from the server.
      Throws:
      LDAPException - If a problem occurs while sending the request or reading the response.
    • getRebindRequest

      Retrieves a bind request that may be used to re-bind using the same credentials authentication type and credentials as previously used to perform the initial bind. This may be used in an attempt to automatically re-establish a connection that is lost, or potentially when following a referral to another directory instance.

      It is recommended that all bind request types which implement this capability be implemented so that the elements needed to create a new request are immutable. If this is not done, then changes made to a bind request object may alter the authentication/authorization identity and/or credentials associated with that request so that a rebind request created from it will not match the original request used to authenticate on a connection.
      Overrides:
      getRebindRequest in class BindRequest
      Parameters:
      host - The address of the directory server to which the connection is established.
      port - The port of the directory server to which the connection is established.
      Returns:
      A bind request that may be used to re-bind using the same authentication type and credentials as previously used to perform the initial bind, or null to indicate that automatic re-binding is not supported for this type of bind request.
    • responseReceived

      Throws:
      LDAPException
    • getBindType

      Retrieves a human-readable string that describes the type of bind request.
      Specified by:
      getBindType in class BindRequest
      Returns:
      A human-readable string that describes the type of bind request.
    • getLastMessageID

      public int getLastMessageID()
      Retrieves the message ID for the last LDAP message sent using this request.
      Specified by:
      getLastMessageID in class LDAPRequest
      Returns:
      The message ID for the last LDAP message sent using this request, or -1 if it no LDAP messages have yet been sent using this request.
    • duplicate

      Creates a new instance of this LDAP request that may be modified without impacting this request.
      Specified by:
      duplicate in interface ReadOnlyLDAPRequest
      Specified by:
      duplicate in class BindRequest
      Returns:
      A new instance of this LDAP request that may be modified without impacting this request.
    • duplicate

      Creates a new instance of this LDAP request that may be modified without impacting this request. The provided controls will be used for the new request instead of duplicating the controls from this request.
      Specified by:
      duplicate in interface ReadOnlyLDAPRequest
      Specified by:
      duplicate in class BindRequest
      Parameters:
      controls - The set of controls to include in the duplicate request.
      Returns:
      A new instance of this LDAP request that may be modified without impacting this request.
    • toString

      public void toString(@NotNull StringBuilder buffer)
      Appends a string representation of this request to the provided buffer.
      Specified by:
      toString in interface ProtocolOp
      Specified by:
      toString in interface ReadOnlyLDAPRequest
      Specified by:
      toString in class LDAPRequest
      Parameters:
      buffer - The buffer to which to append a string representation of this request.
    • toCode

      public void toCode(@NotNull List<String> lineList, @NotNull String requestID, int indentSpaces, boolean includeProcessing)
      Appends a number of lines comprising the Java source code that can be used to recreate this request to the given list.
      Specified by:
      toCode in interface ReadOnlyLDAPRequest
      Parameters:
      lineList - The list to which the source code lines should be added.
      requestID - The name that should be used as an identifier for the request. If this is null or empty, then a generic ID will be used.
      indentSpaces - The number of spaces that should be used to indent the generated code. It must not be negative.
      includeProcessing - Indicates whether the generated code should include code required to actually process the request and handle the result (if true), or just to generate the request (if false).