Home | History | Annotate | Download | only in net

Lines Matching refs:bssid

49      * The basic service set identifier (BSSID) of an access point for this network. This will
53 public final String bssid;
56 * Construct a new {@link WifiKey} for the given Wi-Fi SSID/BSSID pair.
61 * @param bssid the basic service set identifier (BSSID) of this network's access point.
64 * @throws IllegalArgumentException if either the SSID or BSSID is invalid.
66 public WifiKey(String ssid, String bssid) {
70 if (!BSSID_PATTERN.matcher(bssid).matches()) {
71 throw new IllegalArgumentException("Invalid bssid: " + bssid);
74 this.bssid = bssid;
79 bssid = in.readString();
90 out.writeString(bssid);
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 + "]";