Package uk.org.siri.siri21
Class PublishingActionStructure
- java.lang.Object
-
- uk.org.siri.siri21.PublishingActionStructure
-
- All Implemented Interfaces:
Serializable
public class PublishingActionStructure extends Object implements Serializable
Type for description of the whole action to be published (extends SIRI-SX v2.0p).Java class for PublishingActionStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PublishingActionStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="PublishAtScope"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ScopeType" type="{http://www.siri.org.uk/siri}ScopeTypeEnumeration"/> <element name="Affects" type="{http://www.siri.org.uk/siri}AffectsScopeStructure"/> </sequence> </restriction> </complexContent> </complexType> </element> <element ref="{http://www.siri.org.uk/siri}PassengerInformationAction" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPublishingActionStructure.PublishAtScopeJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<PassengerInformationAction>passengerInformationActionsprotected PublishingActionStructure.PublishAtScopepublishAtScope
-
Constructor Summary
Constructors Constructor Description PublishingActionStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PassengerInformationAction>getPassengerInformationActions()Description of the whole passenger information of one action.Gets the value of the passengerInformationActions property.PublishingActionStructure.PublishAtScopegetPublishAtScope()Gets the value of the publishAtScope property.voidsetPublishAtScope(PublishingActionStructure.PublishAtScope value)Sets the value of the publishAtScope property.
-
-
-
Field Detail
-
publishAtScope
protected PublishingActionStructure.PublishAtScope publishAtScope
-
passengerInformationActions
protected List<PassengerInformationAction> passengerInformationActions
-
-
Method Detail
-
getPublishAtScope
public PublishingActionStructure.PublishAtScope getPublishAtScope()
Gets the value of the publishAtScope property.- Returns:
- possible object is
PublishingActionStructure.PublishAtScope
-
setPublishAtScope
public void setPublishAtScope(PublishingActionStructure.PublishAtScope value)
Sets the value of the publishAtScope property.- Parameters:
value- allowed object isPublishingActionStructure.PublishAtScope
-
getPassengerInformationActions
public List<PassengerInformationAction> getPassengerInformationActions()
Description of the whole passenger information of one action.Gets the value of the passengerInformationActions 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 passengerInformationActions property.For example, to add a new item, do as follows:
getPassengerInformationActions().add(newItem);Objects of the following type(s) are allowed in the list
PassengerInformationAction
-
-