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

Java class for Fault complex type

.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="Fault">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="faultcode" type="{http://www.w3.org/2001/XMLSchema}QName"/>
         <element name="faultstring" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="faultactor" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
         <element name="detail" type="{http://schemas.xmlsoap.org/soap/envelope/}detail" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

This class was annotated by ph-jaxb-plugin -Xph-annotate

This class contains methods created by ph-jaxb-plugin -Xph-equalshashcode

This class contains methods created by ph-jaxb-plugin -Xph-tostring

This class contains methods created by ph-jaxb-plugin -Xph-cloneable2

This class contains methods created by ph-jaxb-plugin -Xph-value-extender

See Also:
  • Constructor Details

    • Soap11Fault

      public Soap11Fault()
      Default constructor
      Note: automatically created by ph-jaxb-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-jaxb-plugin -Xph-equalshashcode
      Overrides:
      equals in class Object
    • hashCode

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

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

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

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