]> git.basschouten.com Git - openhab-addons.git/blob
a1e8f348e4c3b28b827ba8904df5593336bcec72
[openhab-addons.git] /
1 /*
2  * Copyright 2017 Gregory Moyer
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openhab.binding.sleepiq.api.impl;
17
18 public class Endpoints
19 {
20     private static final String LOGIN = "login";
21     private static final String BED = "bed";
22     private static final String SLEEPER = "sleeper";
23     private static final String FAMILY_STATUS = "familyStatus";
24     private static final String PAUSE_MODE = "pauseMode";
25
26     public static String login()
27     {
28         return LOGIN;
29     }
30
31     public static String bed()
32     {
33         return BED;
34     }
35
36     public static String sleeper()
37     {
38         return SLEEPER;
39     }
40
41     public static String familyStatus()
42     {
43         return FAMILY_STATUS;
44     }
45
46     public static String pauseMode()
47     {
48         return PAUSE_MODE;
49     }
50
51     // @formatter:off
52     private Endpoints() {}
53     // @formatter:on
54 }