]> git.basschouten.com Git - openhab-addons.git/blob
626335bf36c322a3f99617c1036e18c5d5d1f79f
[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 for things I haven't got a clue off.
20  *
21  * This fields have been identified to exist:
22  * com.kiwigrid.application.schedule.ProfileApp=[
23  * IdPriorizedDeviceList,
24  * ProfilesList,
25  * IdProfileActive
26  * ]
27  *
28  * @author Sven Carstens - Initial contribution
29  */
30 @NonNullByDefault
31 public class ProfileApp extends Device {
32     public static final String SOLAR_WATT_CLASSNAME = "com.kiwigrid.application.schedule.ProfileApp";
33
34     public ProfileApp(DeviceDTO deviceDTO) {
35         super(deviceDTO);
36     }
37
38     @Override
39     protected String getSolarWattLabel() {
40         return "ProfileApp";
41     }
42 }