public class CompareRequestDecorator extends SingleReplyRequestDecorator<CompareRequest> implements CompareRequest
messageLength| Constructor and Description |
|---|
CompareRequestDecorator(LdapApiService codec,
CompareRequest decoratedMessage)
Makes a CompareRequest a MessageDecorator.
|
| Modifier and Type | Method and Description |
|---|---|
CompareRequest |
addAllControls(Control[] controls)
Adds an array of controls to this Message.
|
CompareRequest |
addControl(Control control)
Adds a control to this Message.
|
int |
computeLength()
Compute the CompareRequest length
CompareRequest :
0x6E L1
|
+--> 0x04 L2 entry
+--> 0x30 L3 (ava)
|
+--> 0x04 L4 attributeDesc
+--> 0x04 L5 assertionValue
L3 = Length(0x04) + Length(L4) + L4 + Length(0x04) +
Length(L5) + L5
Length(CompareRequest) = Length(0x6E) + Length(L1) + L1 +
Length(0x04) + Length(L2) + L2 + Length(0x30) + Length(L3) + L3
|
ByteBuffer |
encode(ByteBuffer buffer)
Encode the CompareRequest message to a PDU.
|
Value<?> |
getAssertionValue()
Gets the attribute value to use in making the comparison.
|
String |
getAttributeId()
Gets the attribute id use in making the comparison.
|
Dn |
getName()
Gets the distinguished name of the entry to be compared using the
attribute value assertion.
|
CompareRequest |
removeControl(Control control)
Deletes a control removing it from this Message.
|
CompareRequest |
setAssertionValue(byte[] value)
Sets the attribute value to use in the comparison.
|
CompareRequest |
setAssertionValue(String value)
Sets the attribute value to use in the comparison.
|
CompareRequest |
setAttributeId(String attrId)
Sets the attribute id used in the comparison.
|
CompareRequest |
setMessageId(int messageId)
Sets the Message ID for this request
|
CompareRequest |
setName(Dn name)
Sets the distinguished name of the entry to be compared using the
attribute value assertion.
|
abandon, addAbandonListener, getResponseType, isAbandonedgetResultResponse, hasResponseget, getCodecService, getControl, getControls, getControlsLength, getCurrentControl, getDecorated, getDecorator, getMessageId, getMessageLength, getType, hasControl, put, setControlsLength, setMessageLength, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetResponseTypegetResultResponsehasResponseget, getControl, getControls, getMessageId, getType, hasControl, putabandon, addAbandonListener, isAbandonedpublic CompareRequestDecorator(LdapApiService codec, CompareRequest decoratedMessage)
decoratedMessage - the decorated CompareRequestpublic Dn getName()
getName in interface CompareRequestpublic CompareRequest setName(Dn name)
setName in interface CompareRequestname - the Dn of the compared entry.public Value<?> getAssertionValue()
getAssertionValue in interface CompareRequestpublic CompareRequest setAssertionValue(String value)
setAssertionValue in interface CompareRequestvalue - the attribute value used in comparison.public CompareRequest setAssertionValue(byte[] value)
setAssertionValue in interface CompareRequestvalue - the attribute value used in comparison.public String getAttributeId()
getAttributeId in interface CompareRequestpublic CompareRequest setAttributeId(String attrId)
setAttributeId in interface CompareRequestattrId - the attribute id used in comparison.public CompareRequest setMessageId(int messageId)
setMessageId in interface CompareRequestsetMessageId in interface MessagesetMessageId in class MessageDecorator<CompareRequest>messageId - The message Idpublic CompareRequest addControl(Control control)
addControl in interface CompareRequestaddControl in interface MessageaddControl in class MessageDecorator<CompareRequest>control - the control to add.public CompareRequest addAllControls(Control[] controls)
addAllControls in interface CompareRequestaddAllControls in interface MessageaddAllControls in class MessageDecorator<CompareRequest>controls - the controls to add.public CompareRequest removeControl(Control control)
removeControl in interface CompareRequestremoveControl in interface MessageremoveControl in class MessageDecorator<CompareRequest>control - the control to remove.public int computeLength()
computeLength in interface Asn1ObjectcomputeLength in interface Decorator<CompareRequest>public ByteBuffer encode(ByteBuffer buffer) throws EncoderException
encode in interface Asn1Objectencode in interface Decorator<CompareRequest>buffer - The buffer where to put the PDUEncoderException - if the buffer can't be encodedCopyright © 2021. All rights reserved.