Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 66794b19cee532af277717c031d70b60cdb16361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
********************************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 ********************************************************************************

Device : DeviceWeatherStation

A WeatherStation is a device that provides weather information.

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 = DeviceWeatherStationFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = DeviceWeatherStationFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class DeviceWeatherStationFlexContainer extends AbstractFlexContainer {
	
	public static final String LONG_NAME = "deviceWeatherStation";
	public static final String SHORT_NAME = "deWSn";
	
	public DeviceWeatherStationFlexContainer () {
		setContainerDefinition("org.onem2m.home.device." + DeviceWeatherStationFlexContainer.LONG_NAME);
		setLongName(LONG_NAME);
		setShortName(SHORT_NAME);
	}
	
	public void finalizeSerialization() {
		getTemperature();
		getRelativeHumidity();
		getAtmosphericPressureSensor();
		getNoise();
		getExtendedCarbonDioxideSensor();
	}
	
	public void finalizeDeserialization() {
		if (this.temperature != null) {
			setTemperature(this.temperature);
		}
		if (this.relativeHumidity != null) {
			setRelativeHumidity(this.relativeHumidity);
		}
		if (this.atmosphericPressureSensor != null) {
			setAtmosphericPressureSensor(this.atmosphericPressureSensor);
		}
		if (this.noise != null) {
			setNoise(this.noise);
		}
		if (this.extendedCarbonDioxideSensor != null) {
			setExtendedCarbonDioxideSensor(this.extendedCarbonDioxideSensor);
		}
	}
	
	@XmlElement(name="tempe", 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="relHy", required=true, type=RelativeHumidityFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
	private RelativeHumidityFlexContainer relativeHumidity;
	
	
	public void setRelativeHumidity(RelativeHumidityFlexContainer relativeHumidity) {
		this.relativeHumidity = relativeHumidity;
		getFlexContainerOrContainerOrSubscription().add(relativeHumidity);
	}
	
	public RelativeHumidityFlexContainer getRelativeHumidity() {
		this.relativeHumidity = (RelativeHumidityFlexContainer) getResourceByName(RelativeHumidityFlexContainer.SHORT_NAME);
		return relativeHumidity;
	}
	
	@XmlElement(name="atPSr", required=true, type=AtmosphericPressureSensorFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
	private AtmosphericPressureSensorFlexContainer atmosphericPressureSensor;
	
	
	public void setAtmosphericPressureSensor(AtmosphericPressureSensorFlexContainer atmosphericPressureSensor) {
		this.atmosphericPressureSensor = atmosphericPressureSensor;
		getFlexContainerOrContainerOrSubscription().add(atmosphericPressureSensor);
	}
	
	public AtmosphericPressureSensorFlexContainer getAtmosphericPressureSensor() {
		this.atmosphericPressureSensor = (AtmosphericPressureSensorFlexContainer) getResourceByName(AtmosphericPressureSensorFlexContainer.SHORT_NAME);
		return atmosphericPressureSensor;
	}
	
	@XmlElement(name="noise", required=true, type=NoiseFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
	private NoiseFlexContainer noise;
	
	
	public void setNoise(NoiseFlexContainer noise) {
		this.noise = noise;
		getFlexContainerOrContainerOrSubscription().add(noise);
	}
	
	public NoiseFlexContainer getNoise() {
		this.noise = (NoiseFlexContainer) getResourceByName(NoiseFlexContainer.SHORT_NAME);
		return noise;
	}
	
	@XmlElement(name="eCDSr", required=true, type=ExtendedCarbonDioxideSensorFlexContainer.class, namespace="http://www.onem2m.org/xml/protocols/homedomain")
	private ExtendedCarbonDioxideSensorFlexContainer extendedCarbonDioxideSensor;
	
	
	public void setExtendedCarbonDioxideSensor(ExtendedCarbonDioxideSensorFlexContainer extendedCarbonDioxideSensor) {
		this.extendedCarbonDioxideSensor = extendedCarbonDioxideSensor;
		getFlexContainerOrContainerOrSubscription().add(extendedCarbonDioxideSensor);
	}
	
	public ExtendedCarbonDioxideSensorFlexContainer getExtendedCarbonDioxideSensor() {
		this.extendedCarbonDioxideSensor = (ExtendedCarbonDioxideSensorFlexContainer) getResourceByName(ExtendedCarbonDioxideSensorFlexContainer.SHORT_NAME);
		return extendedCarbonDioxideSensor;
	}
	
}

Back to the top