Class AbstractBaseFaultType

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    FunctionalBaseFaultType, TechnicalBaseFaultType

    public abstract class AbstractBaseFaultType
    extends java.lang.Object
    implements java.io.Serializable
    <p>Java class for AbstractBaseFaultType complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;complexType name="AbstractBaseFaultType"&gt; &lt;complexContent&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;sequence&gt; &lt;element name="code"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="20"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="severity"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="20"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/&gt; &lt;element name="actor"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="255"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="description"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="255"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="detail"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="5000"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="lang"&gt; &lt;simpleType&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;maxLength value="2"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; &lt;/element&gt; &lt;element name="reasons"&gt; &lt;complexType&gt; &lt;complexContent&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;sequence&gt; &lt;element name="reason" type="{http://flower.com/docs/domain/exception}AbstractBaseFaultType" maxOccurs="unbounded" minOccurs="0"/&gt; &lt;/sequence&gt; &lt;/restriction&gt; &lt;/complexContent&gt; &lt;/complexType&gt; &lt;/element&gt; &lt;/sequence&gt; &lt;/restriction&gt; &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  AbstractBaseFaultType.Reasons
      <p>Java class for anonymous complex type.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String actor
      Identifiant technique de la chaine emettrice de l'erreur
      protected java.lang.String code
      Code de l'erreur
      protected java.lang.String description
      Description courte
      protected java.lang.String detail
      Description longue
      protected java.lang.String lang
      langue pour les messages
      protected AbstractBaseFaultType.Reasons reasons
      tableau des erreurs d'origine (stack)
      protected java.lang.String severity
      Type d'erreur: critical, error, warning
      protected java.util.Date timestamp
      Horodatage de l'erreur
    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractBaseFaultType()
      Default no-arg constructor abc
      AbstractBaseFaultType​(java.lang.String code, java.lang.String severity, java.util.Date timestamp, java.lang.String actor, java.lang.String description, java.lang.String detail, java.lang.String lang, AbstractBaseFaultType.Reasons reasons)
      Fully-initialising value constructor
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getActor()
      Gets the value of the actor property.
      java.lang.String getCode()
      Gets the value of the code property.
      java.lang.String getDescription()
      Gets the value of the description property.
      java.lang.String getDetail()
      Gets the value of the detail property.
      java.lang.String getLang()
      Gets the value of the lang property.
      AbstractBaseFaultType.Reasons getReasons()
      Gets the value of the reasons property.
      java.lang.String getSeverity()
      Gets the value of the severity property.
      java.util.Date getTimestamp()
      Gets the value of the timestamp property.
      void setActor​(java.lang.String value)
      Sets the value of the actor property.
      void setCode​(java.lang.String value)
      Sets the value of the code property.
      void setDescription​(java.lang.String value)
      Sets the value of the description property.
      void setDetail​(java.lang.String value)
      Sets the value of the detail property.
      void setLang​(java.lang.String value)
      Sets the value of the lang property.
      void setReasons​(AbstractBaseFaultType.Reasons value)
      Sets the value of the reasons property.
      void setSeverity​(java.lang.String value)
      Sets the value of the severity property.
      void setTimestamp​(java.util.Date value)
      Sets the value of the timestamp property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • code

        protected java.lang.String code
        Code de l'erreur
      • severity

        protected java.lang.String severity
        Type d'erreur: critical, error, warning
      • timestamp

        protected java.util.Date timestamp
        Horodatage de l'erreur
      • actor

        protected java.lang.String actor
        Identifiant technique de la chaine emettrice de l'erreur
      • description

        protected java.lang.String description
        Description courte
      • detail

        protected java.lang.String detail
        Description longue
      • lang

        protected java.lang.String lang
        langue pour les messages
    • Constructor Detail

      • AbstractBaseFaultType

        public AbstractBaseFaultType()
        Default no-arg constructor abc
      • AbstractBaseFaultType

        public AbstractBaseFaultType​(java.lang.String code,
                                     java.lang.String severity,
                                     java.util.Date timestamp,
                                     java.lang.String actor,
                                     java.lang.String description,
                                     java.lang.String detail,
                                     java.lang.String lang,
                                     AbstractBaseFaultType.Reasons reasons)
        Fully-initialising value constructor
    • Method Detail

      • getCode

        public java.lang.String getCode()
        Gets the value of the code property. <p> Code de l'erreur
        Returns:
        possible object is String
      • setCode

        public void setCode​(java.lang.String value)
        Sets the value of the code property.
        Parameters:
        value - allowed object is String
        See Also:
        getCode()
      • getSeverity

        public java.lang.String getSeverity()
        Gets the value of the severity property. <p> Type d'erreur: critical, error, warning
        Returns:
        possible object is String
      • setSeverity

        public void setSeverity​(java.lang.String value)
        Sets the value of the severity property.
        Parameters:
        value - allowed object is String
        See Also:
        getSeverity()
      • getTimestamp

        public java.util.Date getTimestamp()
        Gets the value of the timestamp property. <p> Horodatage de l'erreur
        Returns:
        possible object is String
      • setTimestamp

        public void setTimestamp​(java.util.Date value)
        Sets the value of the timestamp property.
        Parameters:
        value - allowed object is String
        See Also:
        getTimestamp()
      • getActor

        public java.lang.String getActor()
        Gets the value of the actor property. <p> Identifiant technique de la chaine emettrice de l'erreur
        Returns:
        possible object is String
      • setActor

        public void setActor​(java.lang.String value)
        Sets the value of the actor property.
        Parameters:
        value - allowed object is String
        See Also:
        getActor()
      • getDescription

        public java.lang.String getDescription()
        Gets the value of the description property. <p> Description courte
        Returns:
        possible object is String
      • setDescription

        public void setDescription​(java.lang.String value)
        Sets the value of the description property.
        Parameters:
        value - allowed object is String
        See Also:
        getDescription()
      • getDetail

        public java.lang.String getDetail()
        Gets the value of the detail property. <p> Description longue
        Returns:
        possible object is String
      • setDetail

        public void setDetail​(java.lang.String value)
        Sets the value of the detail property.
        Parameters:
        value - allowed object is String
        See Also:
        getDetail()
      • getLang

        public java.lang.String getLang()
        Gets the value of the lang property. <p> langue pour les messages
        Returns:
        possible object is String
      • setLang

        public void setLang​(java.lang.String value)
        Sets the value of the lang property.
        Parameters:
        value - allowed object is String
        See Also:
        getLang()