blob: 9dc8789fd1c6c9c2b23964ee4f6d36a6b28400c7 [file] [log] [blame]
/*
ModuleClass : RecorderAnnc
This ModuleClass provides the capability to record the video/audio for a defined duration.
Created: 2017-08-09 15:38:05
*/
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 = RecorderFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = RecorderFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class RecorderFlexContainerAnnc extends AbstractFlexContainerAnnc {
public static final String LONG_NAME = "recorderAnnc";
public static final String SHORT_NAME = "recorAnnc";
public RecorderFlexContainerAnnc () {
setContainerDefinition("org.onem2m.home.moduleclass." + RecorderFlexContainer.LONG_NAME);
setLongName(LONG_NAME);
setShortName(SHORT_NAME);
}
public void finalizeSerialization() {
}
}