Class Soap11Fault

java.lang.Object
com.helger.phase4.soap11.Soap11Fault
All Implemented Interfaces:
com.helger.commons.lang.IExplicitlyCloneable, Serializable, Cloneable

@CodingStyleguideUnaware public class Soap11Fault extends Object implements Serializable, com.helger.commons.lang.IExplicitlyCloneable
Fault reporting structure <p>Java class for Fault complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;complexType name="Fault"&gt; &lt;complexContent&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;sequence&gt; &lt;element name="faultcode" type="{http://www.w3.org/2001/XMLSchema}QName"/&gt; &lt;element name="faultstring" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; &lt;element name="faultactor" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/&gt; &lt;element name="detail" type="{http://schemas.xmlsoap.org/soap/envelope/}detail" minOccurs="0"/&gt; &lt;/sequence&gt; &lt;/restriction&gt; &lt;/complexContent&gt; &lt;/complexType&gt; </pre> <p>This class was annotated by ph-jaxb22-plugin -Xph-annotate</p> <p>This class contains methods created by ph-jaxb22-plugin -Xph-equalshashcode</p> <p>This class contains methods created by ph-jaxb22-plugin -Xph-tostring</p> <p>This class contains methods created by ph-jaxb22-plugin -Xph-cloneable2</p> <p>This class contains methods created by ph-jaxb22-plugin -Xph-value-extender</p>
See Also:
  • Constructor Details

    • Soap11Fault

      public Soap11Fault()
      Default constructor<br> Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
  • Method Details

    • getFaultcode

      @Nullable public QName getFaultcode()
      Gets the value of the faultcode property.
      Returns:
      possible object is QName
    • setFaultcode

      public void setFaultcode(@Nullable QName value)
      Sets the value of the faultcode property.
      Parameters:
      value - allowed object is QName
    • getFaultstring

      @Nullable public String getFaultstring()
      Gets the value of the faultstring property.
      Returns:
      possible object is String
    • setFaultstring

      public void setFaultstring(@Nullable String value)
      Sets the value of the faultstring property.
      Parameters:
      value - allowed object is String
    • getFaultactor

      @Nullable public String getFaultactor()
      Gets the value of the faultactor property.
      Returns:
      possible object is String
    • setFaultactor

      public void setFaultactor(@Nullable String value)
      Sets the value of the faultactor property.
      Parameters:
      value - allowed object is String
    • getDetail

      @Nullable public Soap11Detail getDetail()
      Gets the value of the detail property.
      Returns:
      possible object is Soap11Detail
    • setDetail

      public void setDetail(@Nullable Soap11Detail value)
      Sets the value of the detail property.
      Parameters:
      value - allowed object is Soap11Detail
    • equals

      public boolean equals(Object o)
      Created by ph-jaxb22-plugin -Xph-equalshashcode
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Created by ph-jaxb22-plugin -Xph-equalshashcode
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Created by ph-jaxb22-plugin -Xph-tostring
      Overrides:
      toString in class Object
    • cloneTo

      public void cloneTo(@Nonnull Soap11Fault ret)
      This method clones all values from <code>this</code> to the passed object. All data in the parameter object is overwritten!Created by ph-jaxb22-plugin -Xph-cloneable2
      Parameters:
      ret - The target object to clone to. May not be <code>null</code>.
    • clone

      @Nonnull @ReturnsMutableCopy public Soap11Fault clone()
      Created by ph-jaxb22-plugin -Xph-cloneable2
      Specified by:
      clone in interface com.helger.commons.lang.IExplicitlyCloneable
      Overrides:
      clone in class Object
      Returns:
      The cloned object. Never <code>null</code>.