Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.om2m.commons/src/main/java/org/eclipse/om2m/commons/resource/flexcontainerspec/RobotCleanerJobModeFlexContainerAnnc.java')
-rw-r--r--org.eclipse.om2m.commons/src/main/java/org/eclipse/om2m/commons/resource/flexcontainerspec/RobotCleanerJobModeFlexContainerAnnc.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/org.eclipse.om2m.commons/src/main/java/org/eclipse/om2m/commons/resource/flexcontainerspec/RobotCleanerJobModeFlexContainerAnnc.java b/org.eclipse.om2m.commons/src/main/java/org/eclipse/om2m/commons/resource/flexcontainerspec/RobotCleanerJobModeFlexContainerAnnc.java
new file mode 100644
index 00000000..dfc676ee
--- /dev/null
+++ b/org.eclipse.om2m.commons/src/main/java/org/eclipse/om2m/commons/resource/flexcontainerspec/RobotCleanerJobModeFlexContainerAnnc.java
@@ -0,0 +1,47 @@
+/*
+********************************************************************************
+ * 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
+ ********************************************************************************
+
+ModuleClass : RobotCleanerJobModeAnnc
+
+This ModuleClasses provides capabilities to control and monitor the job modes of a robotCleaner.
+
+Created: 2018-06-29 17:19:53
+*/
+
+package org.eclipse.om2m.commons.resource.flexcontainerspec;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+import org.eclipse.om2m.commons.resource.AbstractFlexContainerAnnc;
+
+@XmlRootElement(name = RobotCleanerJobModeFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = RobotCleanerJobModeFlexContainerAnnc.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
+public class RobotCleanerJobModeFlexContainerAnnc extends AbstractFlexContainerAnnc {
+
+ public static final String LONG_NAME = "robotCleanerJobModeAnnc";
+ public static final String SHORT_NAME = "rCJMeAnnc";
+
+ public RobotCleanerJobModeFlexContainerAnnc () {
+ setContainerDefinition("org.onem2m.home.moduleclass." + RobotCleanerJobModeFlexContainer.LONG_NAME);
+ setLongName(LONG_NAME);
+ setShortName(SHORT_NAME);
+ }
+
+ public void finalizeSerialization() {
+ }
+
+ public void finalizeDeserialization() {
+ }
+
+
+}

Back to the top