2 * Copyright (c) 2010-2020 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.ojelectronics.internal.models.groups;
15 import java.util.ArrayList;
16 import java.util.List;
18 import org.eclipse.jdt.annotation.NonNullByDefault;
19 import org.eclipse.jdt.annotation.Nullable;
22 * Model for content of a group
24 * @author Christian Kittel - Initial contribution
27 public class GroupContent {
33 public String groupName = "";
35 public List<Thermostat> thermostats = new ArrayList<Thermostat>();
37 public int regulationMode;
39 public @Nullable Schedule schedule;
41 public int comfortSetpoint;
43 public String comfortEndTime = "";
45 public int manualModeSetpoint;
47 public boolean vacationEnabled;
49 public String vacationBeginDay = "";
51 public String vacationEndDay = "";
53 public int vacationTemperature;
55 public boolean lastPrimaryModeIsAuto;
57 public String boostEndTime = "";
59 public int frostProtectionTemperature;