]> git.basschouten.com Git - openhab-addons.git/blob
2a7f6395f568f1224a95a235d222ab0521c7af84
[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 IconsMetadata
19 {
20     private Integer totalIconCount;
21     private Integer page;
22     private Integer pageSize;
23     private Integer pageCount;
24
25     public Integer getTotalIconCount()
26     {
27         return totalIconCount;
28     }
29
30     public void setTotalIconCount(Integer totalIconCount)
31     {
32         this.totalIconCount = totalIconCount;
33     }
34
35     public IconsMetadata withTotalIconCount(Integer totalIconCount)
36     {
37         this.totalIconCount = totalIconCount;
38         return this;
39     }
40
41     public Integer getPage()
42     {
43         return page;
44     }
45
46     public void setPage(Integer page)
47     {
48         this.page = page;
49     }
50
51     public IconsMetadata withPage(Integer page)
52     {
53         this.page = page;
54         return this;
55     }
56
57     public Integer getPageSize()
58     {
59         return pageSize;
60     }
61
62     public void setPageSize(Integer pageSize)
63     {
64         this.pageSize = pageSize;
65     }
66
67     public IconsMetadata withPageSize(Integer pageSize)
68     {
69         this.pageSize = pageSize;
70         return this;
71     }
72
73     public Integer getPageCount()
74     {
75         return pageCount;
76     }
77
78     public void setPageCount(Integer pageCount)
79     {
80         this.pageCount = pageCount;
81     }
82
83     public IconsMetadata withPageCount(Integer pageCount)
84     {
85         this.pageCount = pageCount;
86         return this;
87     }
88 }