/**@class android.net.wifi.WifiManager.LocalOnlyHotspotCallback
@extends java.lang.Object

 Callback class for applications to receive updates about the LocalOnlyHotspot status.
*/
var LocalOnlyHotspotCallback = {

/**@hide */
REQUEST_REGISTERED : "0",
/***/
ERROR_NO_CHANNEL : "1",
/***/
ERROR_GENERIC : "2",
/***/
ERROR_INCOMPATIBLE_MODE : "3",
/***/
ERROR_TETHERING_DISALLOWED : "4",
/**LocalOnlyHotspot start succeeded.
*/
onStarted : function(  ) {},

/**LocalOnlyHotspot stopped.
 <p>
 The LocalOnlyHotspot can be disabled at any time by the user.  When this happens,
 applications will be notified that it was stopped. This will not be invoked when an
 application calls {@link android.net.wifi.WifiManager.LocalOnlyHotspotReservation#close()}.
*/
onStopped : function(  ) {},

/**LocalOnlyHotspot failed to start.
 <p>
 Applications can attempt to call
 {@link android.net.wifi.WifiManager#startLocalOnlyHotspot(LocalOnlyHotspotCallback, Handler)} again at
 a later time.
 <p>
@param {Number} reason The reason for failure could be one of: {@link
 #ERROR_TETHERING_DISALLOWED}, {@link #ERROR_INCOMPATIBLE_MODE},
 {@link #ERROR_NO_CHANNEL}, or {@link #ERROR_GENERIC}.
*/
onFailed : function(  ) {},


};