blob: ad9ea580ac52c5b9edd4b36a2bc45e9eb91707c0 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
********************************************************************************
Device : DeviceThreeDPrinter
A 3D printer is a smart home appliance to provide 3D printing capabilities.
Created: 2018-06-29 17:19:54
*/
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;
@XmlRootElement(name = DeviceThreeDPrinterFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = DeviceThreeDPrinterFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class DeviceThreeDPrinterFlexContainer extends AbstractFlexContainer {
public static final String LONG_NAME = "deviceThreeDPrinter";
public static final String SHORT_NAME = "dTDPr";
public DeviceThreeDPrinterFlexContainer () {
setContainerDefinition("org.onem2m.home.device." + DeviceThreeDPrinterFlexContainer.LONG_NAME);
setLongName(LONG_NAME);
setShortName(SHORT_NAME);
}
public void finalizeSerialization() {
getBinarySwitch();
getFaultDetection();
getThreeDPrinter();
getRunState();
getTemperature();
getPrintQueue();
}
public void finalizeDeserialization() {
if (this.binarySwitch != null) {
setBinarySwitch(this.binarySwitch);
}
if (this.faultDetection != null) {
setFaultDetection(this.faultDetection);
}
if (this.threeDPrinter != null) {
setThreeDPrinter(this.threeDPrinter);
}
if (this.runState != null) {
setRunState(this.runState);
}
if (this.temperature != null) {
setTemperature(this.temperature);
}
if (this.printQueue != null) {
setPrintQueue(this.printQueue);
}
}
@XmlElement(name=BinarySwitchFlexContainer.SHORT_NAME, required=true, type=BinarySwitchFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private BinarySwitchFlexContainer binarySwitch;
public void setBinarySwitch(BinarySwitchFlexContainer binarySwitch) {
this.binarySwitch = binarySwitch;
getFlexContainerOrContainerOrSubscription().add(binarySwitch);
}
public BinarySwitchFlexContainer getBinarySwitch() {
this.binarySwitch = (BinarySwitchFlexContainer) getResourceByName(BinarySwitchFlexContainer.SHORT_NAME);
return binarySwitch;
}
@XmlElement(name=FaultDetectionFlexContainer.SHORT_NAME, required=true, type=FaultDetectionFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private FaultDetectionFlexContainer faultDetection;
public void setFaultDetection(FaultDetectionFlexContainer faultDetection) {
this.faultDetection = faultDetection;
getFlexContainerOrContainerOrSubscription().add(faultDetection);
}
public FaultDetectionFlexContainer getFaultDetection() {
this.faultDetection = (FaultDetectionFlexContainer) getResourceByName(FaultDetectionFlexContainer.SHORT_NAME);
return faultDetection;
}
@XmlElement(name=ThreeDPrinterFlexContainer.SHORT_NAME, required=true, type=ThreeDPrinterFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private ThreeDPrinterFlexContainer threeDPrinter;
public void setThreeDPrinter(ThreeDPrinterFlexContainer threeDPrinter) {
this.threeDPrinter = threeDPrinter;
getFlexContainerOrContainerOrSubscription().add(threeDPrinter);
}
public ThreeDPrinterFlexContainer getThreeDPrinter() {
this.threeDPrinter = (ThreeDPrinterFlexContainer) getResourceByName(ThreeDPrinterFlexContainer.SHORT_NAME);
return threeDPrinter;
}
@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=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=PrintQueueFlexContainer.SHORT_NAME, required=true, type=PrintQueueFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private PrintQueueFlexContainer printQueue;
public void setPrintQueue(PrintQueueFlexContainer printQueue) {
this.printQueue = printQueue;
getFlexContainerOrContainerOrSubscription().add(printQueue);
}
public PrintQueueFlexContainer getPrintQueue() {
this.printQueue = (PrintQueueFlexContainer) getResourceByName(PrintQueueFlexContainer.SHORT_NAME);
return printQueue;
}
}