]> git.basschouten.com Git - openhab-addons.git/blob
cee5c42cb8b70e7ec45246e5e0eec7b921e11d74
[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.solarwatt.internal.domain.model;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.solarwatt.internal.domain.dto.DeviceDTO;
17
18 /**
19  * Class representing the scheduler of the energy manager.
20  *
21  * This fields have been identified to exist:
22  * com.kiwigrid.application.schedule.ScheduleApp=[
23  * ScheduleEvents,
24  * StateSchedule,
25  * ExcessMinSleepTime,
26  * ScheduleOverride,
27  * ExcessMinRuntime,
28  * ExcessMinRuntimePerDay,
29  * PowerInAverage,
30  * ExcessMinDuration,
31  * PowerLimitDefaults,
32  * SchedulesList,
33  * Schedule
34  * ]
35  *
36  * @author Sven Carstens - Initial contribution
37  */
38 @NonNullByDefault
39 public class ScheduleApp extends Device {
40     public static final String SOLAR_WATT_CLASSNAME = "com.kiwigrid.application.schedule.ScheduleApp";
41
42     public ScheduleApp(DeviceDTO deviceDTO) {
43         super(deviceDTO);
44     }
45
46     @Override
47     protected String getSolarWattLabel() {
48         return "ScheduleApp";
49     }
50 }