]> git.basschouten.com Git - openhab-addons.git/blob
827feb4c7f086021adc2dc5761e94ddcf4fb3def
[openhab-addons.git] /
1 /**
2  * Copyright 2017-2018 Gregory Moyer and contributors.
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.lametrictime.api.local.model;
17
18 public class Endpoints
19 {
20     private String appsActionUrl;
21     private String appsGetUrl;
22     private String appsListUrl;
23     private String appsSwitchNextUrl;
24     private String appsSwitchPrevUrl;
25     private String appsSwitchUrl;
26     private String audioUrl;
27     private String bluetoothUrl;
28     private String concreteNotificationUrl;
29     private String currentNotificationUrl;
30     private String deviceUrl;
31     private String displayUrl;
32     private String notificationsUrl;
33     private String widgetUpdateUrl;
34     private String wifiUrl;
35
36     public String getAppsActionUrl()
37     {
38         return appsActionUrl;
39     }
40
41     public void setAppsActionUrl(String appsActionUrl)
42     {
43         this.appsActionUrl = appsActionUrl;
44     }
45
46     public Endpoints withAppsActionUrl(String appsActionUrl)
47     {
48         this.appsActionUrl = appsActionUrl;
49         return this;
50     }
51
52     public String getAppsGetUrl()
53     {
54         return appsGetUrl;
55     }
56
57     public void setAppsGetUrl(String appsGetUrl)
58     {
59         this.appsGetUrl = appsGetUrl;
60     }
61
62     public Endpoints withAppsGetUrl(String appsGetUrl)
63     {
64         this.appsGetUrl = appsGetUrl;
65         return this;
66     }
67
68     public String getAppsListUrl()
69     {
70         return appsListUrl;
71     }
72
73     public void setAppsListUrl(String appsListUrl)
74     {
75         this.appsListUrl = appsListUrl;
76     }
77
78     public Endpoints withAppsListUrl(String appsListUrl)
79     {
80         this.appsListUrl = appsListUrl;
81         return this;
82     }
83
84     public String getAppsSwitchNextUrl()
85     {
86         return appsSwitchNextUrl;
87     }
88
89     public void setAppsSwitchNextUrl(String appsSwitchNextUrl)
90     {
91         this.appsSwitchNextUrl = appsSwitchNextUrl;
92     }
93
94     public Endpoints withAppsSwitchNextUrl(String appsSwitchNextUrl)
95     {
96         this.appsSwitchNextUrl = appsSwitchNextUrl;
97         return this;
98     }
99
100     public String getAppsSwitchPrevUrl()
101     {
102         return appsSwitchPrevUrl;
103     }
104
105     public void setAppsSwitchPrevUrl(String appsSwitchPrevUrl)
106     {
107         this.appsSwitchPrevUrl = appsSwitchPrevUrl;
108     }
109
110     public Endpoints withAppsSwitchPrevUrl(String appsSwitchPrevUrl)
111     {
112         this.appsSwitchPrevUrl = appsSwitchPrevUrl;
113         return this;
114     }
115
116     public String getAppsSwitchUrl()
117     {
118         return appsSwitchUrl;
119     }
120
121     public void setAppsSwitchUrl(String appsSwitchUrl)
122     {
123         this.appsSwitchUrl = appsSwitchUrl;
124     }
125
126     public Endpoints withAppsSwitchUrl(String appsSwitchUrl)
127     {
128         this.appsSwitchUrl = appsSwitchUrl;
129         return this;
130     }
131
132     public String getAudioUrl()
133     {
134         return audioUrl;
135     }
136
137     public void setAudioUrl(String audioUrl)
138     {
139         this.audioUrl = audioUrl;
140     }
141
142     public Endpoints withAudioUrl(String audioUrl)
143     {
144         this.audioUrl = audioUrl;
145         return this;
146     }
147
148     public String getBluetoothUrl()
149     {
150         return bluetoothUrl;
151     }
152
153     public void setBluetoothUrl(String bluetoothUrl)
154     {
155         this.bluetoothUrl = bluetoothUrl;
156     }
157
158     public Endpoints withBluetoothUrl(String bluetoothUrl)
159     {
160         this.bluetoothUrl = bluetoothUrl;
161         return this;
162     }
163
164     public String getConcreteNotificationUrl()
165     {
166         return concreteNotificationUrl;
167     }
168
169     public void setConcreteNotificationUrl(String concreteNotificationUrl)
170     {
171         this.concreteNotificationUrl = concreteNotificationUrl;
172     }
173
174     public Endpoints withConcreteNotificationUrl(String concreteNotificationUrl)
175     {
176         this.concreteNotificationUrl = concreteNotificationUrl;
177         return this;
178     }
179
180     public String getCurrentNotificationUrl()
181     {
182         return currentNotificationUrl;
183     }
184
185     public void setCurrentNotificationUrl(String currentNotificationUrl)
186     {
187         this.currentNotificationUrl = currentNotificationUrl;
188     }
189
190     public Endpoints withCurrentNotificationUrl(String currentNotificationUrl)
191     {
192         this.currentNotificationUrl = currentNotificationUrl;
193         return this;
194     }
195
196     public String getDeviceUrl()
197     {
198         return deviceUrl;
199     }
200
201     public void setDeviceUrl(String deviceUrl)
202     {
203         this.deviceUrl = deviceUrl;
204     }
205
206     public Endpoints withDeviceUrl(String deviceUrl)
207     {
208         this.deviceUrl = deviceUrl;
209         return this;
210     }
211
212     public String getDisplayUrl()
213     {
214         return displayUrl;
215     }
216
217     public void setDisplayUrl(String displayUrl)
218     {
219         this.displayUrl = displayUrl;
220     }
221
222     public Endpoints withDisplayUrl(String displayUrl)
223     {
224         this.displayUrl = displayUrl;
225         return this;
226     }
227
228     public String getNotificationsUrl()
229     {
230         return notificationsUrl;
231     }
232
233     public void setNotificationsUrl(String notificationsUrl)
234     {
235         this.notificationsUrl = notificationsUrl;
236     }
237
238     public Endpoints withNotificationsUrl(String notificationsUrl)
239     {
240         this.notificationsUrl = notificationsUrl;
241         return this;
242     }
243
244     public String getWidgetUpdateUrl()
245     {
246         return widgetUpdateUrl;
247     }
248
249     public void setWidgetUpdateUrl(String widgetUpdateUrl)
250     {
251         this.widgetUpdateUrl = widgetUpdateUrl;
252     }
253
254     public Endpoints withWidgetUpdateUrl(String widgetUpdateUrl)
255     {
256         this.widgetUpdateUrl = widgetUpdateUrl;
257         return this;
258     }
259
260     public String getWifiUrl()
261     {
262         return wifiUrl;
263     }
264
265     public void setWifiUrl(String wifiUrl)
266     {
267         this.wifiUrl = wifiUrl;
268     }
269
270     public Endpoints withWifiUrl(String wifiUrl)
271     {
272         this.wifiUrl = wifiUrl;
273         return this;
274     }
275
276     @Override
277     public String toString()
278     {
279         StringBuilder builder = new StringBuilder();
280         builder.append("Endpoints [appsActionUrl=");
281         builder.append(appsActionUrl);
282         builder.append(", appsGetUrl=");
283         builder.append(appsGetUrl);
284         builder.append(", appsListUrl=");
285         builder.append(appsListUrl);
286         builder.append(", appsSwitchNextUrl=");
287         builder.append(appsSwitchNextUrl);
288         builder.append(", appsSwitchPrevUrl=");
289         builder.append(appsSwitchPrevUrl);
290         builder.append(", appsSwitchUrl=");
291         builder.append(appsSwitchUrl);
292         builder.append(", audioUrl=");
293         builder.append(audioUrl);
294         builder.append(", bluetoothUrl=");
295         builder.append(bluetoothUrl);
296         builder.append(", concreteNotificationUrl=");
297         builder.append(concreteNotificationUrl);
298         builder.append(", currentNotificationUrl=");
299         builder.append(currentNotificationUrl);
300         builder.append(", deviceUrl=");
301         builder.append(deviceUrl);
302         builder.append(", displayUrl=");
303         builder.append(displayUrl);
304         builder.append(", notificationsUrl=");
305         builder.append(notificationsUrl);
306         builder.append(", widgetUpdateUrl=");
307         builder.append(widgetUpdateUrl);
308         builder.append(", wifiUrl=");
309         builder.append(wifiUrl);
310         builder.append("]");
311         return builder.toString();
312     }
313 }