2 * Copyright (c) 2010-2021 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.squeezebox.internal.handler;
16 * Represents a Squeeze Player
18 * @author Dan Cunningham - Initial contribution
21 public class SqueezeBoxPlayer {
22 public String macAddress;
28 public SqueezeBoxPlayer() {
37 public String getUuid() {
46 public void setUuid(String uuid) {
51 * Mac Address of player
55 public String getMacAddress() {
60 * Mac Address of player
64 public void setMacAddress(String macAddress) {
65 this.macAddress = macAddress;
69 * The name (label) of a player
73 public String getName() {
78 * The name (label) of a player
82 public void setName(String name) {
87 * The ip address of a player
91 public String getIpAddr() {
96 * The ip address of a player
100 public void setIpAddr(String ipAddr) {
101 this.ipAddr = ipAddr;
109 public String getModel() {
118 public void setModel(String model) {