Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 279f4455c1093eba0e8254f30bc77edd9aadf740 (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
/*
********************************************************************************
 * 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
 ********************************************************************************

ModuleClass : TelevisionChannel

This ModuleClass provides capabilities to set and get channels  of a device that has a channel list.

Created: 2017-09-28 17:26:40
*/

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 = TelevisionChannelFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = TelevisionChannelFlexContainer.SHORT_NAME, namespace = "http://www.onem2m.org/xml/protocols/homedomain")
public class TelevisionChannelFlexContainer extends AbstractFlexContainer {
	
	public static final String LONG_NAME = "televisionChannel";
	public static final String SHORT_NAME = "telCl";
	
	public TelevisionChannelFlexContainer () {
		setContainerDefinition("org.onem2m.home.moduleclass." + TelevisionChannelFlexContainer.LONG_NAME);
		setLongName(LONG_NAME);
		setShortName(SHORT_NAME);
	}
	
	public void finalizeSerialization() {
		getUpChannel();
		getDownChannel();
	}
	
	public void finalizeDeserialization() {
		if (this.upChannel != null) {
			setUpChannel(upChannel);
		}
		if (this.downChannel != null) {
			setDownChannel(downChannel);
		}
	}
	
	@XmlElement(name=UpChannelFlexContainer.SHORT_NAME, required=true, type=UpChannelFlexContainer.class)
	private UpChannelFlexContainer upChannel;
	
	
	public void setUpChannel(UpChannelFlexContainer upChannel) {
		this.upChannel = upChannel;
		getFlexContainerOrContainerOrSubscription().add(upChannel);
	}
	
	public UpChannelFlexContainer getUpChannel() {
		this.upChannel = (UpChannelFlexContainer) getResourceByName(UpChannelFlexContainer.SHORT_NAME);
		return upChannel;
	}
	
	@XmlElement(name=DownChannelFlexContainer.SHORT_NAME, required=true, type=DownChannelFlexContainer.class)
	private DownChannelFlexContainer downChannel;
	
	
	public void setDownChannel(DownChannelFlexContainer downChannel) {
		this.downChannel = downChannel;
		getFlexContainerOrContainerOrSubscription().add(downChannel);
	}
	
	public DownChannelFlexContainer getDownChannel() {
		this.downChannel = (DownChannelFlexContainer) getResourceByName(DownChannelFlexContainer.SHORT_NAME);
		return downChannel;
	}
	
}

Back to the top