]> git.basschouten.com Git - openhab-addons.git/blob
4f97915ac9e19b6b93a08b50eab550693457efb7
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.squeezebox.internal.config;
14
15 /**
16  * Configuration of a server.
17  *
18  * @author Dan Cunningham - Initial contribution
19  * @author Mark Hilbush - Added user ID and password
20  *
21  */
22 public class SqueezeBoxServerConfig {
23     /**
24      * Server ip address
25      */
26     public String ipAddress;
27     /**
28      * Server web port for REST calls
29      */
30     public int webport;
31     /**
32      * Server cli port
33      */
34     public int cliport;
35     /**
36      * Language for TTS
37      */
38     public String language;
39     /*
40      * User ID (when authentication enabled in LMS)
41      */
42     public String userId;
43     /*
44      * User ID (when authentication enabled in LMS)
45      */
46     public String password;
47 }