opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/BindRequestProtocolOp.java
@@ -54,9 +54,6 @@ public class BindRequestProtocolOp extends ProtocolOp { // The bind DN for this request. private ASN1OctetString dn; @@ -209,18 +206,6 @@ /** * Specifies the authentication type for this bind request. * * @param authenticationType The authentication type for this bind request. */ public void setAuthenticationType(AuthenticationType authenticationType) { this.authenticationType = authenticationType; } /** * Retrieves the simple authentication password for this bind request. * * @return The simple authentication password for this bind request, or opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/TestBindRequestProtocolOp.java
@@ -165,7 +165,6 @@ sasl.setProtocolVersion(2); simple.setProtocolVersion(2); sasl.setSASLAuthenticationInfo(SASL_MECHANISM_GSSAPI, saslCreds); sasl.setAuthenticationType(AuthenticationType.INTERNAL); ASN1Element simpleElement = simple.encode(); ASN1Element saslElement = sasl.encode(); @@ -190,6 +189,6 @@ String saslOpTypeStr=saslOp.getAuthenticationType().toString(); // Reporter.log(saslTypeStr); // Reporter.log(saslOpTypeStr); assertFalse(saslOpTypeStr.equals(saslTypeStr)); assertTrue(saslOpTypeStr.equals(saslTypeStr)); } }