Package uk.org.siri.siri10
Class LinePermissionStructure
- java.lang.Object
-
- uk.org.siri.siri10.AbstractTopicPermissionStructure
-
- uk.org.siri.siri10.LinePermissionStructure
-
- All Implemented Interfaces:
Serializable
public class LinePermissionStructure extends AbstractTopicPermissionStructure implements Serializable
Type for Line Permission.Java class for LinePermissionStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LinePermissionStructure"> <complexContent> <extension base="{http://www.siri.org.uk/}AbstractTopicPermissionStructure"> <sequence> <element name="LineRef" type="{http://www.siri.org.uk/}LineRefStructure"/> <element name="DirectionRef" type="{http://www.siri.org.uk/}DirectionRefStructure" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DirectionRefStructure>directionRefprotected LineRefStructurelineRef-
Fields inherited from class uk.org.siri.siri10.AbstractTopicPermissionStructure
allow
-
-
Constructor Summary
Constructors Constructor Description LinePermissionStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DirectionRefStructure>getDirectionRef()Gets the value of the directionRef property.LineRefStructuregetLineRef()Gets the value of the lineRef property.voidsetLineRef(LineRefStructure value)Sets the value of the lineRef property.-
Methods inherited from class uk.org.siri.siri10.AbstractTopicPermissionStructure
isAllow, setAllow
-
-
-
-
Field Detail
-
lineRef
protected LineRefStructure lineRef
-
directionRef
protected List<DirectionRefStructure> directionRef
-
-
Method Detail
-
getLineRef
public LineRefStructure getLineRef()
Gets the value of the lineRef property.- Returns:
- possible object is
LineRefStructure
-
setLineRef
public void setLineRef(LineRefStructure value)
Sets the value of the lineRef property.- Parameters:
value- allowed object isLineRefStructure
-
getDirectionRef
public List<DirectionRefStructure> getDirectionRef()
Gets the value of the directionRef 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 directionRef property.For example, to add a new item, do as follows:
getDirectionRef().add(newItem);Objects of the following type(s) are allowed in the list
DirectionRefStructure
-
-