]> git.basschouten.com Git - openhab-addons.git/blob
83201a8e0574228fea2508fed8e5e2dcc0db868f
[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.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 <functionrename>} CommandRX.
21  *
22  * @author Jan-Willem Veldhuis - Initial contribution
23  */
24 @XmlRootElement(name = "list")
25 @XmlAccessorType(XmlAccessType.FIELD)
26 public class RenameSourceList {
27
28     private String name;
29
30     private String rename;
31
32     public String getName() {
33         return name;
34     }
35
36     public String getRename() {
37         return rename;
38     }
39 }