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

neil_a_wilson
08.27.2007 71f7d80ae3b22e0b05c54cc628b9467291da9b3e
opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/RmiAuthenticator.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.protocols.jmx;
@@ -265,7 +265,7 @@
      bindPW = new ASN1OctetString(password);
    }
    AuthenticationInfo authInfo = new AuthenticationInfo(bindDN, bindPW, false);
    AuthenticationInfo authInfo = new AuthenticationInfo();
    JmxClientConnection jmxClientConnection = new JmxClientConnection(
        jmxConnectionHandler, authInfo);
@@ -284,6 +284,8 @@
          "bind",
          "User is authenticated");
      authInfo = bindOp.getAuthenticationInfo();
      jmxClientConnection.setAuthenticationInfo(authInfo);
      return jmxClientConnection;
    }
    else