Package uk.org.siri.siri14
Class NetworkContextStructure
- java.lang.Object
-
- uk.org.siri.siri14.NetworkContextStructure
-
- All Implemented Interfaces:
Serializable
public class NetworkContextStructure extends Object implements Serializable
Type for shared context.Java class for NetworkContextStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NetworkContextStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Operator" type="{http://www.siri.org.uk/siri}AffectedOperatorStructure" maxOccurs="unbounded" minOccurs="0"/> <element name="Network" type="{http://www.siri.org.uk/siri}NetworkStructure" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected NetworkStructurenetworkprotected List<AffectedOperatorStructure>operators
-
Constructor Summary
Constructors Constructor Description NetworkContextStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NetworkStructuregetNetwork()Gets the value of the network property.List<AffectedOperatorStructure>getOperators()Gets the value of the operators property.voidsetNetwork(NetworkStructure value)Sets the value of the network property.
-
-
-
Field Detail
-
operators
protected List<AffectedOperatorStructure> operators
-
network
protected NetworkStructure network
-
-
Method Detail
-
getOperators
public List<AffectedOperatorStructure> getOperators()
Gets the value of the operators 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 Jakarta XML Binding object. This is why there is not a
setmethod for the operators property.For example, to add a new item, do as follows:
getOperators().add(newItem);Objects of the following type(s) are allowed in the list
AffectedOperatorStructure
-
getNetwork
public NetworkStructure getNetwork()
Gets the value of the network property.- Returns:
- possible object is
NetworkStructure
-
setNetwork
public void setNetwork(NetworkStructure value)
Sets the value of the network property.- Parameters:
value- allowed object isNetworkStructure
-
-