Package uk.org.siri.siri21
Class SubscriptionResponseBodyStructure
- java.lang.Object
-
- uk.org.siri.siri21.SubscriptionResponseBodyStructure
-
- All Implemented Interfaces:
Serializable
public class SubscriptionResponseBodyStructure extends Object implements Serializable
Type for Body of Subscription Response. Used in WSDL.Java class for SubscriptionResponseBodyStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SubscriptionResponseBodyStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.siri.org.uk/siri}ResponseStatus" maxOccurs="unbounded"/> <element name="SubscriptionManagerAddress" type="{http://www.siri.org.uk/siri}EndpointAddress" minOccurs="0"/> <element name="ServiceStartedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ResponseStatus>responseStatusesprotected ZonedDateTimeserviceStartedTimeprotected StringsubscriptionManagerAddress
-
Constructor Summary
Constructors Constructor Description SubscriptionResponseBodyStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseStatus>getResponseStatuses()Gets the value of the responseStatuses property.ZonedDateTimegetServiceStartedTime()Gets the value of the serviceStartedTime property.StringgetSubscriptionManagerAddress()Gets the value of the subscriptionManagerAddress property.voidsetServiceStartedTime(ZonedDateTime value)Sets the value of the serviceStartedTime property.voidsetSubscriptionManagerAddress(String value)Sets the value of the subscriptionManagerAddress property.
-
-
-
Field Detail
-
responseStatuses
protected List<ResponseStatus> responseStatuses
-
subscriptionManagerAddress
protected String subscriptionManagerAddress
-
serviceStartedTime
protected ZonedDateTime serviceStartedTime
-
-
Method Detail
-
getResponseStatuses
public List<ResponseStatus> getResponseStatuses()
Gets the value of the responseStatuses 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 responseStatuses property.For example, to add a new item, do as follows:
getResponseStatuses().add(newItem);Objects of the following type(s) are allowed in the list
ResponseStatus
-
getSubscriptionManagerAddress
public String getSubscriptionManagerAddress()
Gets the value of the subscriptionManagerAddress property.- Returns:
- possible object is
String
-
setSubscriptionManagerAddress
public void setSubscriptionManagerAddress(String value)
Sets the value of the subscriptionManagerAddress property.- Parameters:
value- allowed object isString
-
getServiceStartedTime
public ZonedDateTime getServiceStartedTime()
Gets the value of the serviceStartedTime property.- Returns:
- possible object is
String
-
setServiceStartedTime
public void setServiceStartedTime(ZonedDateTime value)
Sets the value of the serviceStartedTime property.- Parameters:
value- allowed object isString
-
-