mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Mark Craig
20.58.2012 1e74b0f8f046cc9e69ba9eddbc180bf10ab83e06
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/SimpleBindRequest.java
@@ -46,6 +46,26 @@
 * <li>A name/password authentication mechanism using credentials consisting of
 * a name and a password.
 * </ul>
 * {@link Requests} has methods to create a {@code SimpleBindRequest}.
 *
 * <pre>
 * String bindDN = ...;
 * char[] bindPassword = ...;
 *
 * SimpleBindRequest sbr = Requests.newSimpleBindRequest(bindDN, bindPassword);
 * </pre>
 *
 * Alternatively, use
 * {@link org.forgerock.opendj.ldap.Connection#bind(String, char[])
 * Connection.bind}.
 *
 * <pre>
 * Connection connection;
 * String bindDN = ...;
 * char[] bindPassword = ...;
 *
 * connection.bind(bindDN, bindPassword);
 * </pre>
 */
public interface SimpleBindRequest extends BindRequest {
    /**