// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.07.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.datatype.XMLGregorianCalendar; /** * Represents a Subscription for specified server Events. * * <p>Java class for SubscriptionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SubscriptionType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}RegistryObjectType"> * <sequence> * <element name="DeliveryInfo" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}DeliveryInfoType" maxOccurs="unbounded" minOccurs="0"/> * <element name="Selector" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}QueryType"/> * </sequence> * <attribute name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="endTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="notificationInterval" type="{http://www.w3.org/2001/XMLSchema}duration" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubscriptionType", propOrder = { "deliveryInfo", "selector" }) public class SubscriptionType extends RegistryObjectType { @XmlElement(name = "DeliveryInfo") protected List<DeliveryInfoType> deliveryInfo; @XmlElement(name = "Selector", required = true) protected QueryType selector; @XmlAttribute @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startTime; @XmlAttribute @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar endTime; @XmlAttribute protected Duration notificationInterval; /** * Gets the value of the deliveryInfo property. * * <p> * 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 <CODE>set</CODE> method for the deliveryInfo property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDeliveryInfo().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DeliveryInfoType } * * */ public List<DeliveryInfoType> getDeliveryInfo() { if (deliveryInfo == null) { deliveryInfo = new ArrayList<DeliveryInfoType>(); } return this.deliveryInfo; } /** * Gets the value of the selector property. * * @return * possible object is * {@link QueryType } * */ public QueryType getSelector() { return selector; } /** * Sets the value of the selector property. * * @param value * allowed object is * {@link QueryType } * */ public void setSelector(QueryType value) { this.selector = value; } /** * Gets the value of the startTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartTime() { return startTime; } /** * Sets the value of the startTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartTime(XMLGregorianCalendar value) { this.startTime = value; } /** * Gets the value of the endTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndTime() { return endTime; } /** * Sets the value of the endTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndTime(XMLGregorianCalendar value) { this.endTime = value; } /** * Gets the value of the notificationInterval property. * * @return * possible object is * {@link Duration } * */ public Duration getNotificationInterval() { return notificationInterval; } /** * Sets the value of the notificationInterval property. * * @param value * allowed object is * {@link Duration } * */ public void setNotificationInterval(Duration value) { this.notificationInterval = value; } }