|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.ebmwebsourcing.wsstar.notification.definition.resource.basefaults.BaseFaultType
public class BaseFaultType
Java class for BaseFaultType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BaseFaultType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
<element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
<element name="Originator" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType" minOccurs="0"/>
<element name="ErrorCode" minOccurs="0">
<complexType>
<complexContent>
<extension base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="dialect" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
<anyAttribute processContents='skip'/>
</extension>
</complexContent>
</complexType>
</element>
<element name="Description" maxOccurs="unbounded" minOccurs="0">
<complexType>
<simpleContent>
<extension base="<http://www.w3.org/2001/XMLSchema>string">
<attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
</extension>
</simpleContent>
</complexType>
</element>
<element name="FaultCause" minOccurs="0">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<any processContents='lax' namespace='##other'/>
</sequence>
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
<anyAttribute processContents='lax' namespace='##other'/>
</restriction>
</complexContent>
</complexType>
| Nested Class Summary | |
|---|---|
static class |
BaseFaultType.Description
Java class for anonymous complex type. |
static class |
BaseFaultType.ErrorCode
Java class for anonymous complex type. |
static class |
BaseFaultType.FaultCause
Java class for anonymous complex type. |
| Field Summary | |
|---|---|
protected java.util.List<java.lang.Object> |
any
|
protected java.util.List<BaseFaultType.Description> |
description
|
protected BaseFaultType.ErrorCode |
errorCode
|
protected BaseFaultType.FaultCause |
faultCause
|
protected EndpointReferenceType |
originator
|
protected javax.xml.datatype.XMLGregorianCalendar |
timestamp
|
| Constructor Summary | |
|---|---|
BaseFaultType()
|
|
| Method Summary | |
|---|---|
boolean |
equals(java.lang.Object object)
|
void |
equals(java.lang.Object object,
org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
|
java.util.List<java.lang.Object> |
getAny()
Gets the value of the any property. |
java.util.List<BaseFaultType.Description> |
getDescription()
Gets the value of the description property. |
BaseFaultType.ErrorCode |
getErrorCode()
Gets the value of the errorCode property. |
BaseFaultType.FaultCause |
getFaultCause()
Gets the value of the faultCause property. |
EndpointReferenceType |
getOriginator()
Gets the value of the originator property. |
java.util.Map<javax.xml.namespace.QName,java.lang.String> |
getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class. |
javax.xml.datatype.XMLGregorianCalendar |
getTimestamp()
Gets the value of the timestamp property. |
int |
hashCode()
|
void |
hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
|
void |
setErrorCode(BaseFaultType.ErrorCode value)
Sets the value of the errorCode property. |
void |
setFaultCause(BaseFaultType.FaultCause value)
Sets the value of the faultCause property. |
void |
setOriginator(EndpointReferenceType value)
Sets the value of the originator property. |
void |
setTimestamp(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the timestamp property. |
java.lang.String |
toString()
|
void |
toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected java.util.List<java.lang.Object> any
protected javax.xml.datatype.XMLGregorianCalendar timestamp
protected EndpointReferenceType originator
protected BaseFaultType.ErrorCode errorCode
protected java.util.List<BaseFaultType.Description> description
protected BaseFaultType.FaultCause faultCause
| Constructor Detail |
|---|
public BaseFaultType()
| Method Detail |
|---|
public java.util.List<java.lang.Object> getAny()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the any property.
For example, to add a new item, do as follows:
getAny().add(newItem);
Objects of the following type(s) are allowed in the list
Object
Element
public javax.xml.datatype.XMLGregorianCalendar getTimestamp()
XMLGregorianCalendarpublic void setTimestamp(javax.xml.datatype.XMLGregorianCalendar value)
value - allowed object is
XMLGregorianCalendarpublic EndpointReferenceType getOriginator()
EndpointReferenceTypepublic void setOriginator(EndpointReferenceType value)
value - allowed object is
EndpointReferenceTypepublic BaseFaultType.ErrorCode getErrorCode()
BaseFaultType.ErrorCodepublic void setErrorCode(BaseFaultType.ErrorCode value)
value - allowed object is
BaseFaultType.ErrorCodepublic java.util.List<BaseFaultType.Description> getDescription()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the description property.
For example, to add a new item, do as follows:
getDescription().add(newItem);
Objects of the following type(s) are allowed in the list
BaseFaultType.Description
public BaseFaultType.FaultCause getFaultCause()
BaseFaultType.FaultCausepublic void setFaultCause(BaseFaultType.FaultCause value)
value - allowed object is
BaseFaultType.FaultCausepublic java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
public void toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
toString in interface org.jvnet.jaxb2_commons.lang.ToStringpublic java.lang.String toString()
toString in class java.lang.Object
public void equals(java.lang.Object object,
org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
equals in interface org.jvnet.jaxb2_commons.lang.Equalspublic boolean equals(java.lang.Object object)
equals in class java.lang.Objectpublic void hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCodepublic int hashCode()
hashCode in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||