blob: 3cee57e833588a5b62f1a293c96bb3d8f6471262 [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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <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="activeCmdhPolicyLink" type="{http://www.onem2m.org/xml/protocols}ID"/>
* &lt;/sequence>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "activeCmdhPolicyLink" })
@XmlRootElement(name = "activeCmdhPolicy")
public class ActiveCmdhPolicy extends MgmtObj {
@XmlElement(required = true)
protected String activeCmdhPolicyLink;
/**
* Gets the value of the activeCmdhPolicyLink property.
*
* @return possible object is {@link String }
*
*/
public String getActiveCmdhPolicyLink() {
return activeCmdhPolicyLink;
}
/**
* Sets the value of the activeCmdhPolicyLink property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setActiveCmdhPolicyLink(String value) {
this.activeCmdhPolicyLink = value;
}
}