blob: 6a77f9c1b02a81c2aed1a6a559edd6b02eec5b35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013-2020 LAAS-CNRS (www.laas.fr)
* 7 Colonel Roche 31077 Toulouse - France
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Initial Contributors:
* Thierry Monteil : Project manager, technical co-manager
* Mahdi Ben Alaya : Technical co-manager
* Samir Medjiah : Technical co-manager
* Khalil Drira : Strategy expert
* Guillaume Garzone : Developer
* François Aïssaoui : Developer
*
* New contributors :
*******************************************************************************/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// 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: 2015.04.15 at 03:56:27 PM CEST
//
package org.eclipse.om2m.commons.resource;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.MappedSuperclass;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.eclipse.om2m.commons.constants.ShortName;
/**
* <p>
* Java class for announceableSubordinateResource complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="announceableSubordinateResource">
* &lt;complexContent>
* &lt;extension base="{http://www.onem2m.org/xml/protocols}resource">
* &lt;sequence>
* &lt;element name="expirationTime" type="{http://www.onem2m.org/xml/protocols}timestamp"/>
* &lt;element name="announceTo" type="{http://www.onem2m.org/xml/protocols}listOfURIs" minOccurs="0"/>
* &lt;element name="announcedAttribute" minOccurs="0">
* &lt;simpleType>
* &lt;list itemType="{http://www.w3.org/2001/XMLSchema}token" />
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "announceableSubordinateResource")
@XmlSeeAlso({ AccessControlPolicy.class, Schedule.class, ContentInstance.class })
@MappedSuperclass
public class AnnounceableSubordinateResource extends Resource {
@XmlElement(name=ShortName.EXPIRATION_TIME, required = true, namespace="")
protected String expirationTime;
@XmlList
@XmlElement(name=ShortName.ANNOUNCE_TO, required=false, namespace="")
protected List<String> announceTo;
@XmlList
@XmlElement(name=ShortName.ANNOUNCED_ATTRIBUTE, required=false, namespace="")
protected List<String> announcedAttribute;
/**
* Gets the value of the expirationTime property.
*
* @return possible object is {@link String }
*
*/
public String getExpirationTime() {
return expirationTime;
}
/**
* Sets the value of the expirationTime property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setExpirationTime(String value) {
this.expirationTime = value;
}
/**
* Gets the value of the announceTo 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 announceTo property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getAnnounceTo().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link String }
*
*
*/
public List<String> getAnnounceTo() {
if (announceTo == null) {
announceTo = new ArrayList<String>();
}
return this.announceTo;
}
/**
* Gets the value of the announcedAttribute 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 announcedAttribute property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getAnnouncedAttribute().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link String }
*
*
*/
public List<String> getAnnouncedAttribute() {
if (announcedAttribute == null) {
announcedAttribute = new ArrayList<String>();
}
return this.announcedAttribute;
}
}