]> git.basschouten.com Git - openhab-addons.git/blob
c90069c458aaf1fccb6589da789ce9bf9972a4f6
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.bosesoundtouch.internal;
14
15 /**
16  * The {@link AvailableSources} is used to find out, which sources and functions are available
17  *
18  * @author Thomas Traunbauer - Initial contribution
19  */
20 public interface AvailableSources {
21
22     public boolean isBluetoothAvailable();
23
24     public boolean isAUXAvailable();
25
26     public boolean isAUX1Available();
27
28     public boolean isAUX2Available();
29
30     public boolean isAUX3Available();
31
32     public boolean isTVAvailable();
33
34     public boolean isHDMI1Available();
35
36     public boolean isInternetRadioAvailable();
37
38     public boolean isStoredMusicAvailable();
39
40     public boolean isBassAvailable();
41
42     public void setAUXAvailable(boolean aux);
43
44     public void setAUX1Available(boolean aux1);
45
46     public void setAUX2Available(boolean aux2);
47
48     public void setAUX3Available(boolean aux3);
49
50     public void setStoredMusicAvailable(boolean storedMusic);
51
52     public void setInternetRadioAvailable(boolean internetRadio);
53
54     public void setBluetoothAvailable(boolean bluetooth);
55
56     public void setTVAvailable(boolean tv);
57
58     public void setHDMI1Available(boolean hdmi1);
59
60     public void setBassAvailable(boolean bass);
61 }