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