/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
*/
/**
* This class defines the structures and methods for an LDAP bind request
* protocol op, which is used to authenticate a user to the Directory Server.
*/
public class BindRequestProtocolOp
extends ProtocolOp
{
/**
* The tracer object for the debug logger.
*/
// The bind DN for this request.
// The SASL credentials for this request.
// The simple authentication password for this request.
// The authentication type for this request.
// The protocol version for this bind request.
private int protocolVersion;
// The SASL mechanism for this request.
/**
* Creates a new bind request protocol op to perform simple authentication
* with the provided DN and password.
*
* @param dn The DN for this bind request.
* @param protocolVersion The LDAP protocol version for this bind request.
* @param simplePassword The password for this bind request.
*/
{
this.protocolVersion = protocolVersion;
this.simplePassword = simplePassword;
}
/**
* Creates a new bind request protocol op to perform SASL authentication with
* the provided information.
*
* @param dn The DN for this bind request.
* @param saslMechanism The SASL mechanism for this bind request.
* @param saslCredentials The SASL credentials for this bind request.
*/
{
this.saslMechanism = saslMechanism;
this.saslCredentials = saslCredentials;
protocolVersion = 3;
}
/**
* Retrieves the DN for this bind request.
*
* @return The DN for this bind request.
*/
{
return dn;
}
/**
* Retrieves the protocol version for this bind request.
*
* @return The protocol version for this bind request.
*/
public int getProtocolVersion()
{
return protocolVersion;
}
/**
* Retrieves the authentication type for this bind request.
*
* @return The authentication type for this bind request.
*/
{
return authenticationType;
}
/**
* Retrieves the simple authentication password for this bind request.
*
* @return The simple authentication password for this bind request, or
* <CODE>null</CODE> if this is a SASL bind request.
*/
{
return simplePassword;
}
/**
* Retrieves the SASL mechanism for this bind request.
*
* @return The SASL mechanism for this bind request, or <CODE>null</CODE> if
* this is a simple bind request.
*/
{
return saslMechanism;
}
/**
* Retrieves the SASL credentials for this bind request.
*
* @return The SASL credentials for this bind request, or <CODE>null</CODE>
* if there are none or if this is a simple bind request.
*/
{
return saslCredentials;
}
/**
* Retrieves the BER type for this protocol op.
*
* @return The BER type for this protocol op.
*/
public byte getType()
{
return OP_TYPE_BIND_REQUEST;
}
/**
* Retrieves the name for this protocol op type.
*
* @return The name for this protocol op type.
*/
{
return "Bind Request";
}
/**
* Writes this protocol op to an ASN.1 output stream.
*
* @param stream The ASN.1 output stream to write to.
* @throws IOException If a problem occurs while writing to the stream.
*/
{
{
}
else
{
if(saslCredentials != null)
{
}
}
}
/**
* Appends a string representation of this LDAP protocol op to the provided
* buffer.
*
* @param buffer The buffer to which the string should be appended.
*/
{
{
}
{
}
else
{
if (saslCredentials != null)
{
}
}
}
/**
* Appends a multi-line string representation of this LDAP protocol op to the
* provided buffer.
*
* @param buffer The buffer to which the information should be appended.
* @param indent The number of spaces from the margin that the lines should
* be indented.
*/
{
for (int i=0 ; i < indent; i++)
{
}
{
}
{
}
else
{
if (saslCredentials != null)
{
}
}
}
}