/**@class android.net.wifi.WpsInfo implements android.os.Parcelable @extends java.lang.Object A class representing Wi-Fi Protected Setup {@see WifiP2pConfig} */ var WpsInfo = { /**Push button configuration */ PBC : "0", /**Display pin method configuration - pin is generated and displayed on device */ DISPLAY : "1", /**Keypad pin method configuration - pin is entered on device */ KEYPAD : "2", /**Label pin method configuration - pin is labelled on device */ LABEL : "3", /**Invalid configuration */ INVALID : "4", /**Wi-Fi Protected Setup. www.wi-fi.org/wifi-protected-setup has details */ setup : "null", /**Passed with pin method KEYPAD */ BSSID : "null", /**Passed with pin method configuration */ pin : "null", /**Implement the Parcelable interface */ CREATOR : "null", /** */ toString : function( ) {}, /**Implement the Parcelable interface */ describeContents : function( ) {}, /**Implement the Parcelable interface */ writeToParcel : function( ) {}, };