2 * Copyright (c) 2010-2024 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.denonmarantz.internal.xml.entities;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlRootElement;
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;
24 * Holds limited information about the secondary zones of the receiver
26 * @author Jeroen Idserda - Initial contribution
28 @XmlRootElement(name = "item")
29 @XmlAccessorType(XmlAccessType.FIELD)
30 public class ZoneStatusLite {
32 private OnOffType power;
34 private StringType inputFuncSelect;
36 private StringType volumeDisplay;
38 private VolumeType masterVolume;
40 private OnOffType mute;
42 public OnOffType getPower() {
46 public void setPower(OnOffType power) {
50 public StringType getInputFuncSelect() {
51 return inputFuncSelect;
54 public void setInputFuncSelect(StringType inputFuncSelect) {
55 this.inputFuncSelect = inputFuncSelect;
58 public StringType getVolumeDisplay() {
62 public void setVolumeDisplay(StringType volumeDisplay) {
63 this.volumeDisplay = volumeDisplay;
66 public VolumeType getMasterVolume() {
70 public void setMasterVolume(VolumeType masterVolume) {
71 this.masterVolume = masterVolume;
74 public OnOffType getMute() {
78 public void setMute(OnOffType mute) {