Package uk.org.siri.siri20
Class ErrorCodeStructure
- java.lang.Object
-
- uk.org.siri.siri20.ErrorCodeStructure
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AccessNotAllowedErrorStructure,AllowedResourceUsageExceededErrorStructure,BeyondDataHorizonErrorStructure,CapabilityNotSupportedErrorStructure,EndpointDeniedAccessStructure,EndpointNotAvailableAccessStructure,InvalidDataReferencesErrorStructure,NoInfoForTopicErrorStructure,OtherErrorStructure,ParametersIgnoredErrorStructure,ServiceNotAvailableErrorStructure,UnapprovedKeyAccessStructure,UnknownEndpointErrorStructure,UnknownExtensionsErrorStructure,UnknownParticipantErrorStructure,UnknownSubscriberErrorStructure,UnknownSubscriptionErrorStructure
public class ErrorCodeStructure extends Object implements Serializable
Type for Error Code.Java class for ErrorCodeStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ErrorCodeStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ErrorText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="number" type="{http://www.w3.org/2001/XMLSchema}integer" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringerrorTextprotected BigIntegernumber
-
Constructor Summary
Constructors Constructor Description ErrorCodeStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetErrorText()Gets the value of the errorText property.BigIntegergetNumber()Gets the value of the number property.voidsetErrorText(String value)Sets the value of the errorText property.voidsetNumber(BigInteger value)Sets the value of the number property.
-
-
-
Field Detail
-
errorText
protected String errorText
-
number
protected BigInteger number
-
-
Method Detail
-
getErrorText
public String getErrorText()
Gets the value of the errorText property.- Returns:
- possible object is
String
-
setErrorText
public void setErrorText(String value)
Sets the value of the errorText property.- Parameters:
value- allowed object isString
-
getNumber
public BigInteger getNumber()
Gets the value of the number property.- Returns:
- possible object is
BigInteger
-
setNumber
public void setNumber(BigInteger value)
Sets the value of the number property.- Parameters:
value- allowed object isBigInteger
-
-