]> git.basschouten.com Git - openhab-addons.git/blob
549142486f504d9b62240808320c504ab0ad5a81
[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 /**
20  * Contains information about a Denon/Marantz receiver.
21  *
22  * @author Jeroen Idserda - Initial contribution
23  */
24 @XmlRootElement(name = "device_Info")
25 @XmlAccessorType(XmlAccessType.FIELD)
26 public class Deviceinfo {
27
28     private Integer deviceZones;
29
30     private String modelName;
31
32     public Integer getDeviceZones() {
33         return deviceZones;
34     }
35
36     public void setDeviceZones(Integer deviceZones) {
37         this.deviceZones = deviceZones;
38     }
39
40     public String getModelName() {
41         return modelName;
42     }
43
44     public void setModelName(String modelName) {
45         this.modelName = modelName;
46     }
47 }