![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.TerminateSubscriptionRequestStructure Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:39 PM UTC
//
package uk.org.siri.siri20;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Type for request to terminate a subscription or subscriptions.
*
* Java class for TerminateSubscriptionRequestStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TerminateSubscriptionRequestStructure">
* <complexContent>
* <extension base="{http://www.siri.org.uk/siri}AuthenticatedRequestStructure">
* <sequence>
* <group ref="{http://www.siri.org.uk/siri}RequestorEndpointGroup"/>
* <group ref="{http://www.siri.org.uk/siri}DelegatorEndpointGroup"/>
* <group ref="{http://www.siri.org.uk/siri}TerminateSubscriptionTopicGroup"/>
* <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TerminateSubscriptionRequestStructure", propOrder = {
"address",
"requestorRef",
"messageIdentifier",
"delegatorAddress",
"delegatorRef",
"subscriberRef",
"subscriptionReves",
"all",
"extensions"
})
public class TerminateSubscriptionRequestStructure
extends AuthenticatedRequestStructure
implements Serializable
{
@XmlElement(name = "Address")
@XmlSchemaType(name = "anyURI")
protected String address;
@XmlElement(name = "RequestorRef", required = true)
protected RequestorRef requestorRef;
@XmlElement(name = "MessageIdentifier")
protected MessageQualifierStructure messageIdentifier;
@XmlElement(name = "DelegatorAddress")
@XmlSchemaType(name = "anyURI")
protected String delegatorAddress;
@XmlElement(name = "DelegatorRef")
protected RequestorRef delegatorRef;
@XmlElement(name = "SubscriberRef")
protected RequestorRef subscriberRef;
@XmlElement(name = "SubscriptionRef")
protected List subscriptionReves;
@XmlElement(name = "All")
protected String all;
@XmlElement(name = "Extensions")
protected Extensions extensions;
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
/**
* Gets the value of the requestorRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getRequestorRef() {
return requestorRef;
}
/**
* Sets the value of the requestorRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setRequestorRef(RequestorRef value) {
this.requestorRef = value;
}
/**
* Gets the value of the messageIdentifier property.
*
* @return
* possible object is
* {@link MessageQualifierStructure }
*
*/
public MessageQualifierStructure getMessageIdentifier() {
return messageIdentifier;
}
/**
* Sets the value of the messageIdentifier property.
*
* @param value
* allowed object is
* {@link MessageQualifierStructure }
*
*/
public void setMessageIdentifier(MessageQualifierStructure value) {
this.messageIdentifier = value;
}
/**
* Gets the value of the delegatorAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelegatorAddress() {
return delegatorAddress;
}
/**
* Sets the value of the delegatorAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDelegatorAddress(String value) {
this.delegatorAddress = value;
}
/**
* Gets the value of the delegatorRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getDelegatorRef() {
return delegatorRef;
}
/**
* Sets the value of the delegatorRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setDelegatorRef(RequestorRef value) {
this.delegatorRef = value;
}
/**
* Gets the value of the subscriberRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getSubscriberRef() {
return subscriberRef;
}
/**
* Sets the value of the subscriberRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setSubscriberRef(RequestorRef value) {
this.subscriberRef = value;
}
/**
* Gets the value of the subscriptionReves 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 set
method for the subscriptionReves property.
*
*
* For example, to add a new item, do as follows:
*
* getSubscriptionReves().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SubscriptionQualifierStructure }
*
*
*/
public List getSubscriptionReves() {
if (subscriptionReves == null) {
subscriptionReves = new ArrayList();
}
return this.subscriptionReves;
}
/**
* Gets the value of the all property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAll() {
return all;
}
/**
* Sets the value of the all property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAll(String value) {
this.all = value;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link Extensions }
*
*/
public Extensions getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link Extensions }
*
*/
public void setExtensions(Extensions value) {
this.extensions = value;
}
}