2 * Copyright (c) 2010-2022 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.unifi.internal.api.model;
15 import org.openhab.binding.unifi.internal.api.util.UniFiTidyLowerCaseStringDeserializer;
17 import com.google.gson.annotations.JsonAdapter;
20 * A {@link UniFiWirelessClient} represents a wireless {@link UniFiClient}.
22 * A wireless client is not physically connected to the network - typically it is connected via a Wi-Fi adapter.
24 * @author Matthew Bowman - Initial contribution
26 public class UniFiWirelessClient extends UniFiClient {
28 @JsonAdapter(UniFiTidyLowerCaseStringDeserializer.class)
35 public UniFiWirelessClient(UniFiController controller) {
40 public Boolean isWired() {
45 public String getDeviceMac() {
49 public String getEssid() {
53 public Integer getRssi() {