Class UpdateControls
- java.lang.Object
-
- org.apache.directory.api.ldap.extras.extended.endTransaction.UpdateControls
-
public class UpdateControls extends Object
The interface for End Transaction Extended Response UpdateControl. It's described in RFC 5805 :updateControls SEQUENCE { messageID MessageID, -- msgid associated with controls controls Controls } OPTIONAL- Author:
- Apache Directory Project
-
-
Constructor Summary
Constructors Constructor Description UpdateControls()A default constructor for the UpdateControls class
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)List<Control>getControls()intgetMessageId()inthashCode()voidsetControls(List<Control> controls)voidsetMessageId(int messageId)StringtoString()
-
-
-
Method Detail
-
getMessageId
public int getMessageId()
- Returns:
- The messageID
-
setMessageId
public void setMessageId(int messageId)
- Parameters:
messageId- the messageId to set
-
getControls
public List<Control> getControls()
- Returns:
- The set of controls associated with the messageID
-
setControls
public void setControls(List<Control> controls)
- Parameters:
controls- the controls to set
-
equals
public boolean equals(Object obj)
- Overrides:
equalsin classObject- See Also:
Object.equals(Object)
-
toString
public String toString()
- Overrides:
toStringin classObject- See Also:
Object.toString()
-
-