Package uk.org.siri.siri21
Class UnknownExtensionsErrorStructure
- java.lang.Object
-
- uk.org.siri.siri21.ErrorCodeStructure
-
- uk.org.siri.siri21.UnknownExtensionsErrorStructure
-
- All Implemented Interfaces:
Serializable
public class UnknownExtensionsErrorStructure extends ErrorCodeStructure implements Serializable
Type for Unknown Extensions Error:. +SIRI v2.0.Java class for UnknownExtensionsErrorStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="UnknownExtensionsErrorStructure"> <complexContent> <extension base="{http://www.siri.org.uk/siri}ErrorCodeStructure"> <sequence> <element name="ExtensionName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>extensionNames-
Fields inherited from class uk.org.siri.siri21.ErrorCodeStructure
errorText, number
-
-
Constructor Summary
Constructors Constructor Description UnknownExtensionsErrorStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getExtensionNames()Gets the value of the extensionNames property.-
Methods inherited from class uk.org.siri.siri21.ErrorCodeStructure
getErrorText, getNumber, setErrorText, setNumber
-
-
-
-
Method Detail
-
getExtensionNames
public List<String> getExtensionNames()
Gets the value of the extensionNames property.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
setmethod for the extensionNames property.For example, to add a new item, do as follows:
getExtensionNames().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-