Most visited

Recently visited

Added in API level 21

WifiManager.WpsCallback

public static abstract class WifiManager.WpsCallback
extends Object

java.lang.Object
   ↳ android.net.wifi.WifiManager.WpsCallback


Interface for callback invocation on a start WPS action

Summary

Public constructors

WifiManager.WpsCallback()

Public methods

abstract void onFailed(int reason)

WPS operation failed

abstract void onStarted(String pin)

WPS start succeeded

abstract void onSucceeded()

WPS operation completed succesfully

Inherited methods

From class java.lang.Object

Public constructors

WifiManager.WpsCallback

Added in API level 21
WifiManager.WpsCallback ()

Public methods

onFailed

Added in API level 21
void onFailed (int reason)

WPS operation failed

Parameters
reason int: The reason for failure could be one of WPS_TKIP_ONLY_PROHIBITED, WPS_OVERLAP_ERROR, WPS_WEP_PROHIBITED, WPS_TIMED_OUT or WPS_AUTH_FAILURE and some generic errors.

onStarted

Added in API level 21
void onStarted (String pin)

WPS start succeeded

Parameters
pin String

onSucceeded

Added in API level 21
void onSucceeded ()

WPS operation completed succesfully

Hooray!