Class PacketError


  • @NotThreadSafe
    public class PacketError
    extends Object
    A packet error. Errors must have a type and condition. Optionally, they can include explanation text.
    Author:
    Matt Tucker
    • Constructor Detail

      • PacketError

        public PacketError​(PacketError.Condition condition)
        Construcs a new PacketError with the specified condition. The error type will be set to the default for the specified condition.
        Parameters:
        condition - the error condition.
      • PacketError

        public PacketError​(PacketError.Condition condition,
                           PacketError.Type type)
        Constructs a new PacketError with the specified condition and type.
        Parameters:
        condition - the error condition.
        type - the error type.
      • PacketError

        public PacketError​(PacketError.Condition condition,
                           PacketError.Type type,
                           String text)
        Constructs a new PacketError.
        Parameters:
        type - the error type.
        condition - the error condition.
        text - the text description of the error.
      • PacketError

        public PacketError​(PacketError.Condition condition,
                           PacketError.Type type,
                           String text,
                           String lang)
        Constructs a new PacketError.
        Parameters:
        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").
      • PacketError

        public PacketError​(org.dom4j.Element element)
        Constructs a new PacketError using an existing Element. This is useful for parsing incoming error Elements into PacketError objects.
        Parameters:
        element - the error Element.
    • Method Detail

      • getText

        public String getText()
        Returns a text description of the error, or null if there is no text description.
        Returns:
        the text description of the error.
      • setText

        public void setText​(String text)
        Sets the text description of the error.
        Parameters:
        text - the text description of the error.
      • setText

        public void setText​(String text,
                            String lang)
        Sets the text description of the error. Optionally, a language code can be specified to indicate the language of the description.
        Parameters:
        text - the text description of the error.
        lang - the language code of the description, or null to specify no language code.
      • getTextLang

        public String getTextLang()
        Returns the text description's language code, or null if there is no language code associated with the description text.
        Returns:
        the language code of the text description, if it exists.
      • setApplicationCondition

        public void setApplicationCondition​(String name)
        Sets an application-specific error condition.
        Parameters:
        name - the name of the application-specific error condition.
      • setApplicationCondition

        public void setApplicationCondition​(String name,
                                            String namespaceURI)
        Sets an application-specific error condition. Optionally, a application-specific namespace can be specified to define its own application-specific error .
        Parameters:
        name - the name of the application-specific error condition.
        namespaceURI - the namespace of the application.
      • getApplicationConditionName

        public String getApplicationConditionName()
        Returns the name of the application-specific error condition, or null if there is no application-specific error.
        Returns:
        the name of the application-specific error condition, if it exists.
      • getApplicationConditionNamespaceURI

        public String getApplicationConditionNamespaceURI()
        Returns the namespace of the application-specific error condition, or null if there is no application-specific error.
        Returns:
        the namespace of the application-specific error condition, if it exists.
      • getElement

        public org.dom4j.Element getElement()
        Returns the DOM4J Element that backs the error. The element is the definitive representation of the error and can be manipulated directly to change error contents.
        Returns:
        the DOM4J Element.
      • toXML

        public String toXML()
        Returns the textual XML representation of this error.
        Returns:
        the textual XML representation of this error.