diff options
| author | 2019-10-09 07:17:58 -0700 | |
|---|---|---|
| committer | 2019-10-09 11:26:11 -0700 | |
| commit | 6dcadfa41a53fce213f06ff4be9bf4c13b6aae6e (patch) | |
| tree | e89edd674aaf1e091f561ae3a7af9f4089380dca | |
| parent | c60e032391c329b981ede8165333880ec16ec8d6 (diff) | |
WifiManager: Reword documenation for get/remove passpoint API
Bug: 141639265
Test: Compiles
Change-Id: If44ec91ca2d8a4a409677cd7f0f936972db719f6
| -rw-r--r-- | wifi/java/android/net/wifi/WifiManager.java | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/wifi/java/android/net/wifi/WifiManager.java b/wifi/java/android/net/wifi/WifiManager.java index f540492266c5..0f09ccb50de8 100644 --- a/wifi/java/android/net/wifi/WifiManager.java +++ b/wifi/java/android/net/wifi/WifiManager.java @@ -1752,12 +1752,13 @@ public class WifiManager {      }      /** -     * Remove the Passpoint configuration identified by its FQDN (Fully Qualified Domain Name). +     * Remove the Passpoint configuration identified by its FQDN (Fully Qualified Domain Name) added +     * by the caller.       * -     * @param fqdn The FQDN of the Passpoint configuration to be removed +     * @param fqdn The FQDN of the Passpoint configuration added by the caller to be removed       * @throws IllegalArgumentException if no configuration is associated with the given FQDN or       *                                  Passpoint is not enabled on the device. -     * @deprecated This is no longer supported. +     * @deprecated This will be non-functional in a future release.       */      @Deprecated      @RequiresPermission(android.Manifest.permission.NETWORK_SETTINGS) @@ -1772,12 +1773,12 @@ public class WifiManager {      }      /** -     * Return the list of installed Passpoint configurations. +     * Return the list of installed Passpoint configurations added by the caller.       *       * An empty list will be returned when no configurations are installed.       * -     * @return A list of {@link PasspointConfiguration} -     * @deprecated This is no longer supported. +     * @return A list of {@link PasspointConfiguration} added by the caller +     * @deprecated This will be non-functional in a future release.       */      @Deprecated      @RequiresPermission(anyOf = {  |