blob: 7281521b0f5da96ac9f0662231ad7dda85ab4171 [file] [log] [blame]
/*
********************************************************************************
* Copyright (c) 2014, 2018 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
********************************************************************************
Device : DeviceThermostatAnnc
A thermostat is used to control the ambient temperature of rooms within, for example, a house. This information model provides capabilities to interact with specific functions of thermostats.
Created: 2018-06-29 17:19:55
*/
package org.eclipse.om2m.commons.resource.flexcontainerspec;
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;
import org.eclipse.om2m.commons.resource.AbstractFlexContainer;
import org.eclipse.om2m.commons.resource.AbstractFlexContainerAnnc;
@XmlRootElement(name = DeviceThermostatFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = DeviceThermostatFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class DeviceThermostatFlexContainerAnnc extends AbstractFlexContainerAnnc {
public static final String LONG_NAME = "deviceThermostatAnnc";
public static final String SHORT_NAME = "devTtAnnc";
public DeviceThermostatFlexContainerAnnc () {
setContainerDefinition("org.onem2m.home.device." + DeviceThermostatFlexContainer.LONG_NAME);
setLongName(LONG_NAME);
setShortName(SHORT_NAME);
}
public void finalizeSerialization() {
getRunState();
getRunStateAnnc();
getTimer();
getTimerAnnc();
getTemperature();
getTemperatureAnnc();
}
public void finalizeDeserialization() {
if (this.runState != null) {
setRunState(this.runState);
}
if (this.runStateAnnc != null) {
setRunStateAnnc(this.runStateAnnc);
}
if (this.timer != null) {
setTimer(this.timer);
}
if (this.timerAnnc != null) {
setTimerAnnc(this.timerAnnc);
}
if (this.temperature != null) {
setTemperature(this.temperature);
}
if (this.temperatureAnnc != null) {
setTemperatureAnnc(this.temperatureAnnc);
}
}
@XmlElement(name=RunStateFlexContainer.SHORT_NAME, required=true, type=RunStateFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private RunStateFlexContainer runState;
public void setRunState(RunStateFlexContainer runState) {
this.runState = runState;
getFlexContainerOrContainerOrSubscription().add(runState);
}
public RunStateFlexContainer getRunState() {
this.runState = (RunStateFlexContainer) getResourceByName(RunStateFlexContainer.SHORT_NAME);
return runState;
}
@XmlElement(name=RunStateFlexContainerAnnc.SHORT_NAME, required=true, type=RunStateFlexContainerAnnc.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private RunStateFlexContainerAnnc runStateAnnc;
public void setRunStateAnnc(RunStateFlexContainerAnnc runStateAnnc) {
this.runStateAnnc = runStateAnnc;
getFlexContainerOrContainerOrSubscription().add(runStateAnnc);
}
public RunStateFlexContainerAnnc getRunStateAnnc() {
this.runStateAnnc = (RunStateFlexContainerAnnc) getResourceByName(RunStateFlexContainerAnnc.SHORT_NAME);
return runStateAnnc;
}
@XmlElement(name=TimerFlexContainer.SHORT_NAME, required=true, type=TimerFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private TimerFlexContainer timer;
public void setTimer(TimerFlexContainer timer) {
this.timer = timer;
getFlexContainerOrContainerOrSubscription().add(timer);
}
public TimerFlexContainer getTimer() {
this.timer = (TimerFlexContainer) getResourceByName(TimerFlexContainer.SHORT_NAME);
return timer;
}
@XmlElement(name=TimerFlexContainerAnnc.SHORT_NAME, required=true, type=TimerFlexContainerAnnc.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private TimerFlexContainerAnnc timerAnnc;
public void setTimerAnnc(TimerFlexContainerAnnc timerAnnc) {
this.timerAnnc = timerAnnc;
getFlexContainerOrContainerOrSubscription().add(timerAnnc);
}
public TimerFlexContainerAnnc getTimerAnnc() {
this.timerAnnc = (TimerFlexContainerAnnc) getResourceByName(TimerFlexContainerAnnc.SHORT_NAME);
return timerAnnc;
}
@XmlElement(name=TemperatureFlexContainer.SHORT_NAME, required=true, type=TemperatureFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private TemperatureFlexContainer temperature;
public void setTemperature(TemperatureFlexContainer temperature) {
this.temperature = temperature;
getFlexContainerOrContainerOrSubscription().add(temperature);
}
public TemperatureFlexContainer getTemperature() {
this.temperature = (TemperatureFlexContainer) getResourceByName(TemperatureFlexContainer.SHORT_NAME);
return temperature;
}
@XmlElement(name=TemperatureFlexContainerAnnc.SHORT_NAME, required=true, type=TemperatureFlexContainerAnnc.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private TemperatureFlexContainerAnnc temperatureAnnc;
public void setTemperatureAnnc(TemperatureFlexContainerAnnc temperatureAnnc) {
this.temperatureAnnc = temperatureAnnc;
getFlexContainerOrContainerOrSubscription().add(temperatureAnnc);
}
public TemperatureFlexContainerAnnc getTemperatureAnnc() {
this.temperatureAnnc = (TemperatureFlexContainerAnnc) getResourceByName(TemperatureFlexContainerAnnc.SHORT_NAME);
return temperatureAnnc;
}
}