public abstract class AbstractMessage extends Object implements Message
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,Control> |
controls
Map of message controls using OID Strings for keys and Control values
|
private int |
id
The session unique message sequence identifier
|
private Map<Object,Object> |
parameters
Transient Message Parameter Hash
|
private MessageTypeEnum |
type
The message type enumeration
|
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractMessage(int id,
MessageTypeEnum type)
Completes the instantiation of a Message.
|
| Modifier and Type | Method and Description |
|---|---|
Message |
addAllControls(Control[] controls)
Adds an array of controls to this Message.
|
Message |
addControl(Control control)
Adds a control to this Message.
|
boolean |
equals(Object obj)
Checks to see if two messages are equivalent.
|
Object |
get(Object key)
Gets a message scope parameter.
|
Control |
getControl(String oid)
Gets the control associated with the given OID.
|
Map<String,Control> |
getControls()
Gets the controls associated with this message mapped by OID.
|
int |
getMessageId()
Gets the session unique message sequence id for this message.
|
MessageTypeEnum |
getType()
Gets the LDAP message type code associated with this Message.
|
boolean |
hasControl(String oid)
Checks whether or not this message has the specified control.
|
int |
hashCode() |
Object |
put(Object key,
Object value)
Sets a message scope parameter.
|
Message |
removeControl(Control control)
Deletes a control removing it from this Message.
|
Message |
setMessageId(int id)
Sets the Message ID for this request
|
String |
toString(String message)
Get a String representation of a LdapMessage
|
protected final Map<String,Control> controls
private int id
private final MessageTypeEnum type
protected AbstractMessage(int id,
MessageTypeEnum type)
id - the seq id of the messagetype - the type of the messagepublic int getMessageId()
getMessageId in interface Messagepublic Message setMessageId(int id)
setMessageId in interface Messageid - The message Idpublic Map<String,Control> getControls()
getControls in interface Messagepublic Control getControl(String oid)
getControl in interface Messageoid - The Cntrol's OID we are looking forpublic boolean hasControl(String oid)
hasControl in interface Messageoid - the OID of the controlpublic Message addControl(Control control)
addControl in interface Messagecontrol - the control to add.public Message removeControl(Control control)
removeControl in interface Messagecontrol - the control to remove.public MessageTypeEnum getType()
public Object get(Object key)
public Object put(Object key, Object value)
public boolean equals(Object obj)
public int hashCode()
hashCode in class ObjectObject.hashCode()public Message addAllControls(Control[] controls)
addAllControls in interface Messagecontrols - the controls to add.Copyright © 2003–2022 The Apache Software Foundation. All rights reserved.