|
Openfire 3.6.0 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.xmpp.packet.PacketError
public class PacketError
A packet error. Errors must have a type and condition. Optionally, they can include explanation text.
Nested Class Summary | |
---|---|
static class |
PacketError.Condition
Type-safe enumeration for the error condition. |
static class |
PacketError.Type
Error type. |
Constructor Summary | |
---|---|
PacketError(org.dom4j.Element element)
Constructs a new PacketError using an existing Element. |
|
PacketError(PacketError.Condition condition)
Construcs a new PacketError with the specified condition. |
|
PacketError(PacketError.Condition condition,
PacketError.Type type)
Constructs a new PacketError with the specified condition and type. |
|
PacketError(PacketError.Condition condition,
PacketError.Type type,
String text)
Constructs a new PacketError. |
|
PacketError(PacketError.Condition condition,
PacketError.Type type,
String text,
String lang)
Constructs a new PacketError. |
Method Summary | |
---|---|
PacketError.Condition |
getCondition()
Returns the error condition. |
org.dom4j.Element |
getElement()
Returns the DOM4J Element that backs the error. |
String |
getText()
Returns a text description of the error, or null if there is no text description. |
String |
getTextLang()
Returns the text description's language code, or null if there is no language code associated with the description text. |
PacketError.Type |
getType()
Returns the error type. |
void |
setCondition(PacketError.Condition condition)
Sets the error condition. |
void |
setText(String text)
Sets the text description of the error. |
void |
setText(String text,
String lang)
Sets the text description of the error. |
void |
setType(PacketError.Type type)
Sets the error type. |
String |
toString()
|
String |
toXML()
Returns the textual XML representation of this error. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public PacketError(PacketError.Condition condition)
condition
- the error condition.public PacketError(PacketError.Condition condition, PacketError.Type type)
condition
- the error condition.type
- the error type.public PacketError(PacketError.Condition condition, PacketError.Type type, String text)
type
- the error type.condition
- the error condition.text
- the text description of the error.public PacketError(PacketError.Condition condition, PacketError.Type type, String text, String lang)
type
- the error type.condition
- the error condition.text
- the text description of the error.lang
- the language code of the error description (e.g. "en").public PacketError(org.dom4j.Element element)
element
- the error Element.Method Detail |
---|
public PacketError.Type getType()
PacketError.Type
public void setType(PacketError.Type type)
type
- the error type.PacketError.Type
public PacketError.Condition getCondition()
PacketError.Condition
public void setCondition(PacketError.Condition condition)
condition
- the error condition.PacketError.Condition
public String getText()
public void setText(String text)
text
- the text description of the error.public void setText(String text, String lang)
text
- the text description of the error.lang
- the language code of the description, or null to specify
no language code.public String getTextLang()
public org.dom4j.Element getElement()
public String toXML()
public String toString()
toString
in class Object
|
Openfire 3.6.0 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |