public class ModifyRequestDsml extends AbstractResultResponseRequestDsml<ModifyRequest,ModifyResponse> implements ModifyRequest
Constructor and Description |
---|
ModifyRequestDsml(LdapApiService codec)
Creates a new getDecoratedMessage() of ModifyRequestDsml.
|
ModifyRequestDsml(LdapApiService codec,
ModifyRequest ldapMessage)
Creates a new getDecoratedMessage() of ModifyRequestDsml.
|
Modifier and Type | Method and Description |
---|---|
ModifyRequest |
add(Attribute attr)
marks a given attribute for addition in the target entry.
|
ModifyRequest |
add(String attributeName,
byte[]... attributeValue) |
ModifyRequest |
add(String attributeName,
String... attributeValue)
marks a given attribute for addition in the target entry with the
given values.
|
ModifyRequest |
addAllControls(Control[] controls)
Adds an array of controls to this Message.
|
void |
addAttributeTypeAndValues(String type)
Add a new attributeTypeAndValue
|
void |
addAttributeValue(byte[] value)
Add a new value to the current attribute
|
void |
addAttributeValue(String value)
Add a new value to the current attribute
|
ModifyRequest |
addControl(Control control)
Adds a control to this Message.
|
ModifyRequest |
addModification(Attribute attr,
ModificationOperation modOp)
Add a modification
|
ModifyRequest |
addModification(Modification mod)
Adds a ModificationItem to the set of modifications composing this modify
request.
|
String |
getCurrentAttributeType() |
Collection<Modification> |
getModifications()
Gets an immutable Collection of modification items representing the
atomic changes to perform on the candidate entry to modify.
|
Dn |
getName()
Gets the distinguished name of the entry to be modified by this request.
|
MessageTypeEnum |
getResponseType()
Gets the protocol response message type for this request which produces
at least one response.
|
ModifyRequest |
increment(Attribute attributeName)
marks a given attribute for increment by 1 in the target entry.
|
ModifyRequest |
increment(Attribute attributeName,
int increment)
marks a given attribute for increment in the target entry.
|
ModifyRequest |
increment(String attr)
marks a given attribute for increment by 1 in the target entry.
|
ModifyRequest |
increment(String attr,
int increment)
marks a given attribute for increment in the target entry.
|
ModifyRequest |
remove(Attribute attr)
marks a given attribute for removal from the target entry.
|
ModifyRequest |
remove(String attributeName)
marks a given attribute name for removal from the target entry.
|
ModifyRequest |
remove(String attributeName,
byte[]... attributeValue) |
ModifyRequest |
remove(String attributeName,
String... attributeValue)
marks a given attribute for removal with the given
values from the target entry.
|
ModifyRequest |
removeControl(Control control)
Deletes a control removing it from this Message.
|
ModifyRequest |
removeModification(Modification mod)
Removes a ModificationItem to the set of modifications composing this
modify request.
|
ModifyRequest |
replace(Attribute attr)
marks a given attribute for replacement in the target entry.
|
ModifyRequest |
replace(String attributeName) |
ModifyRequest |
replace(String attributeName,
byte[]... attributeValue) |
ModifyRequest |
replace(String attributeName,
String... attributeValue)
marks a given attribute for replacement with the given
values in the target entry.
|
void |
setCurrentOperation(int currentOperation)
Store the current operation
|
ModifyRequest |
setMessageId(int messageId)
Sets the Message ID for this request
|
ModifyRequest |
setName(Dn name)
Sets the distinguished name of the entry to be modified by this request.
|
org.dom4j.Element |
toDsml(org.dom4j.Element root)
Creates the Request Element and adds RequestID and Controls.
|
abandon, addAbandonListener, computeLength, encode, getResultResponse, isAbandoned
hasResponse
get, getCodecService, getControl, getControls, getCurrentControl, getDecorated, getMessageId, getType, hasControl, put
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getResultResponse
hasResponse
get, getControl, getControls, getMessageId, getType, hasControl, put
abandon, addAbandonListener, isAbandoned
public ModifyRequestDsml(LdapApiService codec)
codec
- The LDAP Service to usepublic ModifyRequestDsml(LdapApiService codec, ModifyRequest ldapMessage)
codec
- The LDAP Service to useldapMessage
- the message to decoratepublic String getCurrentAttributeType()
public void setCurrentOperation(int currentOperation)
currentOperation
- The currentOperation to set.public void addAttributeTypeAndValues(String type)
type
- The attribute's namepublic void addAttributeValue(byte[] value) throws LdapException
value
- The value to addLdapException
- If we can't add a valuepublic void addAttributeValue(String value) throws LdapException
value
- The value to addLdapException
- If we can't add a valuepublic org.dom4j.Element toDsml(org.dom4j.Element root)
toDsml
in interface DsmlDecorator<ModifyRequest>
toDsml
in class AbstractResultResponseRequestDsml<ModifyRequest,ModifyResponse>
root
- the root elementpublic MessageTypeEnum getResponseType()
getResponseType
in interface SingleReplyRequest
public Dn getName()
getName
in interface ModifyRequest
public ModifyRequest setName(Dn name)
setName
in interface ModifyRequest
name
- the Dn of the modified entry.public Collection<Modification> getModifications()
getModifications
in interface ModifyRequest
public ModifyRequest addModification(Modification mod)
addModification
in interface ModifyRequest
mod
- a Modification to add.public ModifyRequest removeModification(Modification mod)
removeModification
in interface ModifyRequest
mod
- a Modification to remove.public ModifyRequest remove(String attributeName, String... attributeValue)
remove
in interface ModifyRequest
attributeName
- name of the attribute to be removedattributeValue
- values of the attributepublic ModifyRequest remove(String attributeName, byte[]... attributeValue)
remove
in interface ModifyRequest
attributeName
- name of the attribute to be addedattributeValue
- values of the attributeModifyRequest.remove(String, String...)
public ModifyRequest remove(Attribute attr)
remove
in interface ModifyRequest
attr
- the attribute to be removedpublic ModifyRequest remove(String attributeName)
remove
in interface ModifyRequest
attributeName
- the attribute to be removedpublic ModifyRequest addModification(Attribute attr, ModificationOperation modOp)
addModification
in interface ModifyRequest
attr
- The attribute to be modifiedmodOp
- The operationpublic ModifyRequest add(String attributeName, String... attributeValue)
add
in interface ModifyRequest
attributeName
- name of the attribute to be addedattributeValue
- values of the attributepublic ModifyRequest add(String attributeName, byte[]... attributeValue)
add
in interface ModifyRequest
attributeName
- name of the attribute to be addedattributeValue
- values of the attributeModifyRequest.add(String, String...)
public ModifyRequest add(Attribute attr)
add
in interface ModifyRequest
attr
- the attribute to be addedpublic ModifyRequest replace(String attributeName)
replace
in interface ModifyRequest
attributeName
- name of the attribute to be addedModifyRequest.replace(String, String...)
public ModifyRequest replace(String attributeName, String... attributeValue)
replace
in interface ModifyRequest
attributeName
- name of the attribute to be addedattributeValue
- values of the attributepublic ModifyRequest replace(String attributeName, byte[]... attributeValue)
replace
in interface ModifyRequest
attributeName
- name of the attribute to be addedattributeValue
- values of the attributeModifyRequest.replace(String, String...)
public ModifyRequest replace(Attribute attr)
replace
in interface ModifyRequest
attr
- the attribute to be addedpublic ModifyRequest increment(Attribute attributeName)
increment
in interface ModifyRequest
attributeName
- the attribute to be incrementedpublic ModifyRequest increment(Attribute attributeName, int increment)
increment
in interface ModifyRequest
attributeName
- the attribute to be incrementedincrement
- The increment value (>=1)public ModifyRequest increment(String attr)
increment
in interface ModifyRequest
attr
- the attribute to be incrementedpublic ModifyRequest increment(String attr, int increment)
increment
in interface ModifyRequest
attr
- the attribute to be incrementedincrement
- The increment value (>=1)public ModifyRequest setMessageId(int messageId)
setMessageId
in interface Message
setMessageId
in interface ModifyRequest
setMessageId
in class AbstractDsmlMessageDecorator<ModifyRequest>
messageId
- The message Idpublic ModifyRequest addControl(Control control)
addControl
in interface Message
addControl
in interface ModifyRequest
addControl
in class AbstractDsmlMessageDecorator<ModifyRequest>
control
- the control to add.public ModifyRequest addAllControls(Control[] controls)
addAllControls
in interface Message
addAllControls
in interface ModifyRequest
addAllControls
in class AbstractDsmlMessageDecorator<ModifyRequest>
controls
- the controls to add.public ModifyRequest removeControl(Control control)
removeControl
in interface Message
removeControl
in interface ModifyRequest
removeControl
in class AbstractDsmlMessageDecorator<ModifyRequest>
control
- the control to remove.Copyright © 2003–2023 The Apache Software Foundation. All rights reserved.