]> git.basschouten.com Git - openhab-addons.git/blob
0415cc5056520109c3147d1dfff45acb1c5cfc37
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.atlona.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.core.thing.ThingTypeUID;
17
18 /**
19  * The {@link AtlonaBinding} class defines common constants, which are used across the whole binding.
20  *
21  * @author Tim Roberts - Initial contribution
22  */
23 @NonNullByDefault
24 public class AtlonaBindingConstants {
25
26     /**
27      * The binding identifier for atlona
28      */
29     public static final String BINDING_ID = "atlona";
30
31     /**
32      * Thing ID for the AT-UHD-PRO3-44m (4x4 hdbaset matrix)
33      */
34     public static final ThingTypeUID THING_TYPE_PRO3_44M = new ThingTypeUID(BINDING_ID, "pro3-44m");
35
36     /**
37      * Thing ID for the AT-UHD-PRO3-66m (6x6 hdbaset matrix)
38      */
39     public static final ThingTypeUID THING_TYPE_PRO3_66M = new ThingTypeUID(BINDING_ID, "pro3-66m");
40
41     /**
42      * Thing ID for the AT-UHD-PRO3-88m (8x8 hdbaset matrix)
43      */
44     public static final ThingTypeUID THING_TYPE_PRO3_88M = new ThingTypeUID(BINDING_ID, "pro3-88m");
45
46     /**
47      * Thing ID for the AT-UHD-PRO3-1616m (16x16 hdbaset matrix)
48      */
49     public static final ThingTypeUID THING_TYPE_PRO3_1616M = new ThingTypeUID(BINDING_ID, "pro3-1616m");
50 }