2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.draytonwiser.internal.model;
16 * @author Andrew Schofield - Initial contribution
18 public class DetectedAccessPointDTO {
21 private Integer channel;
22 private String securityMode;
25 public String getSSID() {
29 public void setSSID(final String sSID) {
33 public Integer getChannel() {
37 public void setChannel(final Integer channel) {
38 this.channel = channel;
41 public String getSecurityMode() {
45 public void setSecurityMode(final String securityMode) {
46 this.securityMode = securityMode;
49 public Integer getRSSI() {