StateChangeResultpublic class StateChangeResult extends Object Stores supplicant state change information passed from WifiMonitor to
a state machine. WifiStateMachine, SupplicantStateTracker and WpsStateMachine
are example state machines that handle it. |
Fields Summary |
---|
int | networkId | android.net.wifi.WifiSsid | wifiSsid | String | BSSID | android.net.wifi.SupplicantState | state |
Methods Summary |
---|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append(" SSID: ").append(wifiSsid.toString());
sb.append(" BSSID: ").append(BSSID);
sb.append(" nid: ").append(networkId);
sb.append(" state: ").append(state);
return sb.toString();
|
|