]> git.basschouten.com Git - openhab-addons.git/blob
78fdb1c6500ae4d76d749787f529fa90554a341e
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.ojelectronics.internal.models.groups;
14
15 import java.util.ArrayList;
16 import java.util.List;
17
18 import org.eclipse.jdt.annotation.NonNullByDefault;
19 import org.eclipse.jdt.annotation.Nullable;
20
21 /**
22  * Model for content of a group
23  *
24  * @author Christian Kittel - Initial contribution
25  */
26 @NonNullByDefault
27 public class GroupContent {
28
29     public int action;
30
31     public int groupId;
32
33     public String groupName = "";
34
35     public List<Thermostat> thermostats = new ArrayList<Thermostat>();
36
37     public int regulationMode;
38
39     public @Nullable Schedule schedule;
40
41     public int comfortSetpoint;
42
43     public String comfortEndTime = "";
44
45     public int manualModeSetpoint;
46
47     public boolean vacationEnabled;
48
49     public String vacationBeginDay = "";
50
51     public String vacationEndDay = "";
52
53     public int vacationTemperature;
54
55     public boolean lastPrimaryModeIsAuto;
56
57     public String boostEndTime = "";
58
59     public int frostProtectionTemperature;
60 }