All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.siri.siri21.AbstractSubscriptionStructure Maven / Gradle / Ivy

The newest version!
//
// 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:41 PM UTC 
//


package uk.org.siri.siri21;

import java.io.Serializable;
import java.time.ZonedDateTime;
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.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;


/**
 * Type for SIRI Service subscriptions.
 * 
 * 

Java class for AbstractSubscriptionStructure complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AbstractSubscriptionStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.siri.org.uk/siri}SubscriptionIdentityGroup"/>
 *         <element name="InitialTerminationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="SubscriptionRenewal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractSubscriptionStructure", propOrder = { "subscriberRef", "subscriptionIdentifier", "initialTerminationTime", "subscriptionRenewal" }) @XmlSeeAlso({ EstimatedTimetableSubscriptionStructure.class, StopTimetableSubscriptionStructure.class, StopMonitoringSubscriptionStructure.class, VehicleMonitoringSubscriptionStructure.class, ConnectionTimetableSubscriptionStructure.class, ConnectionMonitoringSubscriptionRequestStructure.class, GeneralMessageSubscriptionStructure.class, FacilityMonitoringSubscriptionStructure.class, SituationExchangeSubscriptionStructure.class, ProductionTimetableSubscriptionStructure.class }) public abstract class AbstractSubscriptionStructure implements Serializable { @XmlElement(name = "SubscriberRef") protected RequestorRef subscriberRef; @XmlElement(name = "SubscriptionIdentifier", required = true) protected SubscriptionQualifierStructure subscriptionIdentifier; @XmlElement(name = "InitialTerminationTime", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime initialTerminationTime; @XmlElement(name = "SubscriptionRenewal") protected Boolean subscriptionRenewal; /** * 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 subscriptionIdentifier property. * * @return * possible object is * {@link SubscriptionQualifierStructure } * */ public SubscriptionQualifierStructure getSubscriptionIdentifier() { return subscriptionIdentifier; } /** * Sets the value of the subscriptionIdentifier property. * * @param value * allowed object is * {@link SubscriptionQualifierStructure } * */ public void setSubscriptionIdentifier(SubscriptionQualifierStructure value) { this.subscriptionIdentifier = value; } /** * Gets the value of the initialTerminationTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getInitialTerminationTime() { return initialTerminationTime; } /** * Sets the value of the initialTerminationTime property. * * @param value * allowed object is * {@link String } * */ public void setInitialTerminationTime(ZonedDateTime value) { this.initialTerminationTime = value; } /** * Gets the value of the subscriptionRenewal property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSubscriptionRenewal() { return subscriptionRenewal; } /** * Sets the value of the subscriptionRenewal property. * * @param value * allowed object is * {@link Boolean } * */ public void setSubscriptionRenewal(Boolean value) { this.subscriptionRenewal = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy