wifi: remove hidden unused Hotspot 2.0 Release 2 APIs am: a38558b539
am: a9a9a9bb8d
Change-Id: I5be1220539e5a22e4f0d4e3d52ac85c608ccb950
This commit is contained in:
@@ -59,11 +59,6 @@ interface IWifiManager
|
||||
|
||||
int addOrUpdateNetwork(in WifiConfiguration config);
|
||||
|
||||
int addPasspointManagementObject(String mo);
|
||||
|
||||
int modifyPasspointManagementObject(String fqdn,
|
||||
in List<PasspointManagementObjectDefinition> mos);
|
||||
|
||||
boolean addPasspointConfiguration(in PasspointConfiguration config);
|
||||
|
||||
boolean removePasspointConfiguration(in String fqdn);
|
||||
|
||||
@@ -841,36 +841,6 @@ public class WifiManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a Hotspot 2.0 release 2 Management Object
|
||||
* @param mo The MO in XML form
|
||||
* @return -1 for failure
|
||||
* @hide
|
||||
*/
|
||||
public int addPasspointManagementObject(String mo) {
|
||||
try {
|
||||
return mService.addPasspointManagementObject(mo);
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Modify a Hotspot 2.0 release 2 Management Object
|
||||
* @param fqdn The FQDN of the service provider
|
||||
* @param mos A List of MO definitions to be updated
|
||||
* @return the number of nodes updated, or -1 for failure
|
||||
* @hide
|
||||
*/
|
||||
public int modifyPasspointManagementObject(String fqdn,
|
||||
List<PasspointManagementObjectDefinition> mos) {
|
||||
try {
|
||||
return mService.modifyPasspointManagementObject(fqdn, mos);
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a Passpoint configuration. The configuration provides a credential
|
||||
* for connecting to Passpoint networks that are operated by the Passpoint
|
||||
|
||||
Reference in New Issue
Block a user