Package org.ldaptive
Class BindResponse
java.lang.Object
org.ldaptive.AbstractMessage
org.ldaptive.AbstractResult
org.ldaptive.BindResponse
LDAP bind response defined as:
BindResponse ::= [APPLICATION 1] SEQUENCE { COMPONENTS OF LDAPResult, serverSaslCreds [7] OCTET STRING OPTIONAL }
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
protected static class
Parse handler implementation for the server SASL creds.Nested classes/interfaces inherited from class org.ldaptive.AbstractResult
AbstractResult.AbstractBuilder<B,
T extends AbstractResult>, AbstractResult.DiagnosticMessageHandler, AbstractResult.MatchedDNHandler, AbstractResult.ReferralHandler, AbstractResult.ResultCodeHandler Nested classes/interfaces inherited from class org.ldaptive.AbstractMessage
AbstractMessage.ControlParser, AbstractMessage.ControlsHandler, AbstractMessage.MessageIDHandler
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final DERPath
DER path to diagnostic message.private static final int
hash code seed.private static final DERPath
DER path to matched DN.static final int
BER protocol number.private static final DERPath
DER path to referral.private static final DERPath
DER path to result code.private static final DERPath
DER path to SASL credentials.private byte[]
Server SASL credentials.Fields inherited from interface org.ldaptive.Result
ENCODE_CNTRL_CHARS
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Default constructor.BindResponse
(DERBuffer buffer) Creates a new bind response. -
Method Summary
Modifier and TypeMethodDescriptionstatic BindResponse.Builder
builder()
Creates a builder for this class.boolean
byte[]
int
hashCode()
Returns the hash code for this object.void
setServerSaslCreds
(byte[] creds) Methods inherited from class org.ldaptive.AbstractResult
addReferralURLs, copyValues, getDiagnosticMessage, getMatchedDN, getReferralURLs, getResultCode, setDiagnosticMessage, setMatchedDN, setResultCode, toString
Methods inherited from class org.ldaptive.AbstractMessage
addControls, copyValues, getControls, getMessageID, setMessageID
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.ldaptive.Message
getControl, getControls, getMessageID
Methods inherited from interface org.ldaptive.Result
getEncodedDiagnosticMessage, isSuccess
-
Field Details
-
PROTOCOL_OP
public static final int PROTOCOL_OPBER protocol number.- See Also:
-
HASH_CODE_SEED
private static final int HASH_CODE_SEEDhash code seed.- See Also:
-
RESULT_CODE_PATH
DER path to result code. -
MATCHED_DN_PATH
DER path to matched DN. -
DIAGNOSTIC_MESSAGE_PATH
DER path to diagnostic message. -
REFERRAL_PATH
DER path to referral. -
SASL_CREDENTIALS_PATH
DER path to SASL credentials. -
serverSaslCreds
private byte[] serverSaslCredsServer SASL credentials.
-
-
Constructor Details
-
BindResponse
private BindResponse()Default constructor. -
BindResponse
Creates a new bind response.- Parameters:
buffer
- to decode
-
-
Method Details
-
getServerSaslCreds
public byte[] getServerSaslCreds() -
setServerSaslCreds
public void setServerSaslCreds(byte[] creds) -
equals
- Overrides:
equals
in classAbstractResult
-
hashCode
public int hashCode()Description copied from class:AbstractMessage
Returns the hash code for this object.- Specified by:
hashCode
in classAbstractMessage
- Returns:
- hash code
-
builder
Creates a builder for this class.- Returns:
- new builder
-