]> git.basschouten.com Git - openhab-addons.git/blob
6a25dc9da41b1423b607fb393cada8634c2e92d4
[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.cloud.model;
17
18 public class Thumb
19 {
20     private String original;
21     private String small;
22     private String large;
23     private String xlarge;
24
25     public String getOriginal()
26     {
27         return original;
28     }
29
30     public void setOriginal(String original)
31     {
32         this.original = original;
33     }
34
35     public Thumb withOriginal(String original)
36     {
37         this.original = original;
38         return this;
39     }
40
41     public String getSmall()
42     {
43         return small;
44     }
45
46     public void setSmall(String small)
47     {
48         this.small = small;
49     }
50
51     public Thumb withSmall(String small)
52     {
53         this.small = small;
54         return this;
55     }
56
57     public String getLarge()
58     {
59         return large;
60     }
61
62     public void setLarge(String large)
63     {
64         this.large = large;
65     }
66
67     public Thumb withLarge(String large)
68     {
69         this.large = large;
70         return this;
71     }
72
73     public String getXlarge()
74     {
75         return xlarge;
76     }
77
78     public void setXlarge(String xlarge)
79     {
80         this.xlarge = xlarge;
81     }
82
83     public Thumb withXlarge(String xlarge)
84     {
85         this.xlarge = xlarge;
86         return this;
87     }
88 }