]> git.basschouten.com Git - openhab-addons.git/blob
9c87f5c29aa6b3c9d6e954fb5e4e693e89a8a29a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.lametrictime.internal.api.cloud.dto;
14
15 /**
16  * Pojo for thumb.
17  *
18  * @author Gregory Moyer - Initial contribution
19  */
20 public class Thumb {
21     private String original;
22     private String small;
23     private String large;
24     private String xlarge;
25
26     public String getOriginal() {
27         return original;
28     }
29
30     public void setOriginal(String original) {
31         this.original = original;
32     }
33
34     public Thumb withOriginal(String original) {
35         this.original = original;
36         return this;
37     }
38
39     public String getSmall() {
40         return small;
41     }
42
43     public void setSmall(String small) {
44         this.small = small;
45     }
46
47     public Thumb withSmall(String small) {
48         this.small = small;
49         return this;
50     }
51
52     public String getLarge() {
53         return large;
54     }
55
56     public void setLarge(String large) {
57         this.large = large;
58     }
59
60     public Thumb withLarge(String large) {
61         this.large = large;
62         return this;
63     }
64
65     public String getXlarge() {
66         return xlarge;
67     }
68
69     public void setXlarge(String xlarge) {
70         this.xlarge = xlarge;
71     }
72
73     public Thumb withXlarge(String xlarge) {
74         this.xlarge = xlarge;
75         return this;
76     }
77 }