]> git.basschouten.com Git - openhab-addons.git/blob
de75cda102c475ac445c53651f77708068a99345
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.denonmarantz.internal.xml.entities;
14
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlRootElement;
18
19 import org.openhab.binding.denonmarantz.internal.xml.entities.types.OnOffType;
20 import org.openhab.binding.denonmarantz.internal.xml.entities.types.StringType;
21 import org.openhab.binding.denonmarantz.internal.xml.entities.types.VolumeType;
22
23 /**
24  * Holds limited information about the secondary zones of the receiver
25  *
26  * @author Jeroen Idserda - Initial contribution
27  */
28 @XmlRootElement(name = "item")
29 @XmlAccessorType(XmlAccessType.FIELD)
30 public class ZoneStatusLite {
31
32     private OnOffType power;
33
34     private StringType inputFuncSelect;
35
36     private StringType volumeDisplay;
37
38     private VolumeType masterVolume;
39
40     private OnOffType mute;
41
42     public OnOffType getPower() {
43         return power;
44     }
45
46     public void setPower(OnOffType power) {
47         this.power = power;
48     }
49
50     public StringType getInputFuncSelect() {
51         return inputFuncSelect;
52     }
53
54     public void setInputFuncSelect(StringType inputFuncSelect) {
55         this.inputFuncSelect = inputFuncSelect;
56     }
57
58     public StringType getVolumeDisplay() {
59         return volumeDisplay;
60     }
61
62     public void setVolumeDisplay(StringType volumeDisplay) {
63         this.volumeDisplay = volumeDisplay;
64     }
65
66     public VolumeType getMasterVolume() {
67         return masterVolume;
68     }
69
70     public void setMasterVolume(VolumeType masterVolume) {
71         this.masterVolume = masterVolume;
72     }
73
74     public OnOffType getMute() {
75         return mute;
76     }
77
78     public void setMute(OnOffType mute) {
79         this.mute = mute;
80     }
81 }