blob: 0d309dde129064928749787fe2e6e5b833d65aa5 [file] [log] [blame]
/*
********************************************************************************
* Copyright (c) 2014, 2017 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 : DeviceSwitchButton
A SwitchButton is a device that provides button.
Created: 2018-06-11 12:14:18
*/
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 = DeviceSwitchButtonFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = DeviceSwitchButtonFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class DeviceSwitchButtonFlexContainer extends AbstractFlexContainer {
public static final String LONG_NAME = "deviceSwitchButton";
public static final String SHORT_NAME = "deSBn";
public DeviceSwitchButtonFlexContainer () {
setContainerDefinition("org.onem2m.home.device." + DeviceSwitchButtonFlexContainer.LONG_NAME);
setLongName(LONG_NAME);
setShortName(SHORT_NAME);
}
public void finalizeSerialization() {
getButtonSwitch();
}
public void finalizeDeserialization() {
if (this.buttonSwitch != null) {
setButtonSwitch(this.buttonSwitch);
}
}
@XmlElement(name="butSh", required=true, type=PushButtonFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
private PushButtonFlexContainer buttonSwitch;
public void setButtonSwitch(PushButtonFlexContainer buttonSwitch) {
this.buttonSwitch = buttonSwitch;
getFlexContainerOrContainerOrSubscription().add(buttonSwitch);
}
public PushButtonFlexContainer getButtonSwitch() {
this.buttonSwitch = (PushButtonFlexContainer) getResourceByName(PushButtonFlexContainer.SHORT_NAME);
return buttonSwitch;
}
}