]> git.basschouten.com Git - openhab-addons.git/blob
66922da7e4d553fc73b7821698362f80143a8dc6
[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.draytonwiser.internal.model;
14
15 import java.util.List;
16
17 /**
18  * @author Andrew Schofield - Initial contribution
19  */
20 public class DomainDTO {
21
22     private SystemDTO system;
23     private List<HeatingChannelDTO> heatingChannel;
24     private List<HotWaterDTO> hotWater;
25     private List<RoomDTO> room;
26     private List<DeviceDTO> device;
27     private List<SmartValveDTO> smartValve;
28     private List<RoomStatDTO> roomStat;
29     private List<SmartPlugDTO> smartPlug;
30
31     public SystemDTO getSystem() {
32         return system;
33     }
34
35     public void setSystem(final SystemDTO system) {
36         this.system = system;
37     }
38
39     public List<HeatingChannelDTO> getHeatingChannel() {
40         return heatingChannel;
41     }
42
43     public void setHeatingChannel(final List<HeatingChannelDTO> heatingChannel) {
44         this.heatingChannel = heatingChannel;
45     }
46
47     public List<HotWaterDTO> getHotWater() {
48         return hotWater;
49     }
50
51     public void setHotWater(final List<HotWaterDTO> hotWater) {
52         this.hotWater = hotWater;
53     }
54
55     public List<RoomDTO> getRoom() {
56         return room;
57     }
58
59     public void setRoom(final List<RoomDTO> room) {
60         this.room = room;
61     }
62
63     public List<DeviceDTO> getDevice() {
64         return device;
65     }
66
67     public void setDevice(final List<DeviceDTO> device) {
68         this.device = device;
69     }
70
71     public List<SmartValveDTO> getSmartValve() {
72         return smartValve;
73     }
74
75     public void setSmartValve(final List<SmartValveDTO> smartValve) {
76         this.smartValve = smartValve;
77     }
78
79     public List<RoomStatDTO> getRoomStat() {
80         return roomStat;
81     }
82
83     public void setRoomStat(final List<RoomStatDTO> roomStat) {
84         this.roomStat = roomStat;
85     }
86
87     public List<SmartPlugDTO> getSmartPlug() {
88         return smartPlug;
89     }
90
91     public void setSmartPlug(final List<SmartPlugDTO> smartPlug) {
92         this.smartPlug = smartPlug;
93     }
94 }