]> git.basschouten.com Git - openhab-addons.git/blob
584141efae2e00ca44aa7f5a5bf00bdfee916e8b
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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 StationDTO {
21
22     private Boolean enabled;
23     private String sSID;
24     private String securityMode;
25     private Long scanSlotTime;
26     private Integer scanSlots;
27     private NetworkInterfaceDTO networkInterface;
28     private String connectionStatus;
29     private DhcpStatusDTO dhcpStatus;
30     private Boolean scanning;
31     private List<DetectedAccessPointDTO> detectedAccessPoints;
32     private Integer connectionFailures;
33     private String mdnsHostname;
34     private String macAddress;
35     private RssiDTO rSSI;
36     private Integer channel;
37
38     public Boolean getEnabled() {
39         return enabled;
40     }
41
42     public void setEnabled(final Boolean enabled) {
43         this.enabled = enabled;
44     }
45
46     public String getSSID() {
47         return sSID;
48     }
49
50     public void setSSID(final String sSID) {
51         this.sSID = sSID;
52     }
53
54     public String getSecurityMode() {
55         return securityMode;
56     }
57
58     public void setSecurityMode(final String securityMode) {
59         this.securityMode = securityMode;
60     }
61
62     public Long getScanSlotTime() {
63         return scanSlotTime;
64     }
65
66     public void setScanSlotTime(final Long scanSlotTime) {
67         this.scanSlotTime = scanSlotTime;
68     }
69
70     public Integer getScanSlots() {
71         return scanSlots;
72     }
73
74     public void setScanSlots(final Integer scanSlots) {
75         this.scanSlots = scanSlots;
76     }
77
78     public NetworkInterfaceDTO getNetworkInterface() {
79         return networkInterface;
80     }
81
82     public void setNetworkInterface(final NetworkInterfaceDTO networkInterface) {
83         this.networkInterface = networkInterface;
84     }
85
86     public String getConnectionStatus() {
87         return connectionStatus;
88     }
89
90     public void setConnectionStatus(final String connectionStatus) {
91         this.connectionStatus = connectionStatus;
92     }
93
94     public DhcpStatusDTO getDhcpStatus() {
95         return dhcpStatus;
96     }
97
98     public void setDhcpStatus(final DhcpStatusDTO dhcpStatus) {
99         this.dhcpStatus = dhcpStatus;
100     }
101
102     public Boolean getScanning() {
103         return scanning;
104     }
105
106     public void setScanning(final Boolean scanning) {
107         this.scanning = scanning;
108     }
109
110     public List<DetectedAccessPointDTO> getDetectedAccessPoints() {
111         return detectedAccessPoints;
112     }
113
114     public void setDetectedAccessPoints(final List<DetectedAccessPointDTO> detectedAccessPoints) {
115         this.detectedAccessPoints = detectedAccessPoints;
116     }
117
118     public Integer getConnectionFailures() {
119         return connectionFailures;
120     }
121
122     public void setConnectionFailures(final Integer connectionFailures) {
123         this.connectionFailures = connectionFailures;
124     }
125
126     public String getMdnsHostname() {
127         return mdnsHostname;
128     }
129
130     public void setMdnsHostname(final String mdnsHostname) {
131         this.mdnsHostname = mdnsHostname;
132     }
133
134     public String getMacAddress() {
135         return macAddress;
136     }
137
138     public void setMacAddress(final String macAddress) {
139         this.macAddress = macAddress;
140     }
141
142     public RssiDTO getRSSI() {
143         return rSSI;
144     }
145
146     public void setRSSI(final RssiDTO rSSI) {
147         this.rSSI = rSSI;
148     }
149
150     public Integer getChannel() {
151         return channel;
152     }
153
154     public void setChannel(final Integer channel) {
155         this.channel = channel;
156     }
157 }