Home | History | Annotate | Download | only in net

Lines Matching defs:ssid

42      * The service set identifier (SSID) of an 802.11 network. If the SSID can be decoded as
46 public final String ssid;
56 * Construct a new {@link WifiKey} for the given Wi-Fi SSID/BSSID pair.
58 * @param ssid the service set identifier (SSID) of an 802.11 network. If the SSID can be
64 * @throws IllegalArgumentException if either the SSID or BSSID is invalid.
66 public WifiKey(String ssid, String bssid) {
67 if (!SSID_PATTERN.matcher(ssid).matches()) {
68 throw new IllegalArgumentException("Invalid ssid: " + ssid);
73 this.ssid = ssid;
78 ssid = in.readString();
89 out.writeString(ssid);
100 return Objects.equals(ssid, wifiKey.ssid) && Objects.equals(bssid, wifiKey.bssid);
105 return Objects.hash(ssid, bssid);
110 return "WifiKey[SSID=" + ssid + ",BSSID=" + bssid + "]";