blob: 373818e434298e0803ba77787776d9d9855c4706 [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.math.BigInteger;
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.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.eclipse.om2m.commons.constants.ShortName;
/**
* <p>
* Java class for anonymous complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;extension base="{http://www.onem2m.org/xml/protocols}mgmtResource">
* &lt;sequence>
* &lt;element name="targetNetwork" type="{http://www.onem2m.org/xml/protocols}listOfM2MID"/>
* &lt;element name="minReqVolume" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
* &lt;element name="backOffParameters" type="{http://www.onem2m.org/xml/protocols}backOffParameters"/>
* &lt;element name="otherConditions" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* &lt;element name="mgmtLink" type="{http://www.onem2m.org/xml/protocols}mgmtLinkRef"/>
* &lt;/sequence>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "targetNetwork", "minReqVolume",
"backOffParameters", "otherConditions", "mgmtLink" })
@XmlRootElement(name = ShortName.CMDH_NW_ACCESS_RULE)
public class CmdhNwAccessRule extends MgmtObj {
@XmlList
@XmlElement(required = true)
protected List<String> targetNetwork;
@XmlElement(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger minReqVolume;
@XmlList
@XmlElement(required = true)
protected List<BigInteger> backOffParameters;
@XmlElement(required = true)
protected Object otherConditions;
@XmlElement(required = true)
protected MgmtLinkRef mgmtLink;
/**
* Gets the value of the targetNetwork 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 targetNetwork property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getTargetNetwork().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list {@link String }
*
*
*/
public List<String> getTargetNetwork() {
if (targetNetwork == null) {
targetNetwork = new ArrayList<String>();
}
return this.targetNetwork;
}
/**
* Gets the value of the minReqVolume property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMinReqVolume() {
return minReqVolume;
}
/**
* Sets the value of the minReqVolume property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMinReqVolume(BigInteger value) {
this.minReqVolume = value;
}
/**
* Gets the value of the backOffParameters 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 backOffParameters property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getBackOffParameters().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BigInteger }
*
*
*/
public List<BigInteger> getBackOffParameters() {
if (backOffParameters == null) {
backOffParameters = new ArrayList<BigInteger>();
}
return this.backOffParameters;
}
/**
* Gets the value of the otherConditions property.
*
* @return possible object is {@link Object }
*
*/
public Object getOtherConditions() {
return otherConditions;
}
/**
* Sets the value of the otherConditions property.
*
* @param value
* allowed object is {@link Object }
*
*/
public void setOtherConditions(Object value) {
this.otherConditions = value;
}
/**
* Gets the value of the mgmtLink property.
*
* @return possible object is {@link MgmtLinkRef }
*
*/
public MgmtLinkRef getMgmtLink() {
return mgmtLink;
}
/**
* Sets the value of the mgmtLink property.
*
* @param value
* allowed object is {@link MgmtLinkRef }
*
*/
public void setMgmtLink(MgmtLinkRef value) {
this.mgmtLink = value;
}
}