]> git.basschouten.com Git - openhab-addons.git/blob
8057d05e8bbd0a25149c4326d79a38d83430c6c9
[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 /**
16  * @author Andrew Schofield - Initial contribution
17  */
18 public class DetectedAccessPointDTO {
19
20     private String sSID;
21     private Integer channel;
22     private String securityMode;
23     private Integer rSSI;
24
25     public String getSSID() {
26         return sSID;
27     }
28
29     public void setSSID(final String sSID) {
30         this.sSID = sSID;
31     }
32
33     public Integer getChannel() {
34         return channel;
35     }
36
37     public void setChannel(final Integer channel) {
38         this.channel = channel;
39     }
40
41     public String getSecurityMode() {
42         return securityMode;
43     }
44
45     public void setSecurityMode(final String securityMode) {
46         this.securityMode = securityMode;
47     }
48
49     public Integer getRSSI() {
50         return rSSI;
51     }
52 }