]> git.basschouten.com Git - openhab-addons.git/blob
937946932491ffa6325b3dfe5085452f7f13ac0d
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.commands;
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  * Used to unmarshall {@code <list>} items of the {@code <functiondelete>} CommandRX.
21  *
22  * @author Jan-Willem Veldhuis - Initial contribution
23  */
24 @XmlRootElement(name = "list")
25 @XmlAccessorType(XmlAccessType.FIELD)
26 public class DeletedSourceList {
27
28     private String name;
29
30     private String funcName;
31
32     private Integer use;
33
34     public String getName() {
35         return name;
36     }
37
38     public String getFuncName() {
39         return funcName;
40     }
41
42     public Integer getUse() {
43         return use;
44     }
45 }