[SAE] Remove support for SAE Password identifier from API surface am: e7095d92bf am: 2d864ccd64 am: da7a3b8cfd

Change-Id: Ie6a3e3d729580a9303269f954157d2b35dd0637a
This commit is contained in:
Automerger Merge Worker
2020-03-11 20:32:32 +00:00
2 changed files with 0 additions and 14 deletions

View File

@@ -7240,7 +7240,6 @@ package android.net.wifi {
field @Deprecated public int numScorerOverride;
field @Deprecated public int numScorerOverrideAndSwitchedNetwork;
field @Deprecated public boolean requirePmf;
field @Deprecated @Nullable public String saePasswordId;
field @Deprecated public boolean shared;
field @Deprecated public boolean useExternalScores;
}

View File

@@ -634,13 +634,6 @@ public class WifiConfiguration implements Parcelable {
*/
public String preSharedKey;
/**
* Optional SAE Password Id for use with WPA3-SAE. It is an ASCII string.
* @hide
*/
@SystemApi
public @Nullable String saePasswordId;
/**
* Four WEP keys. For each of the four values, provide either an ASCII
* string enclosed in double quotation marks (e.g., {@code "abcdef"}),
@@ -2334,9 +2327,6 @@ public class WifiConfiguration implements Parcelable {
sbuf.append('*');
}
sbuf.append('\n').append(" SAE Password Id: ");
sbuf.append(this.saePasswordId);
sbuf.append("\nEnterprise config:\n");
sbuf.append(enterpriseConfig);
@@ -2731,7 +2721,6 @@ public class WifiConfiguration implements Parcelable {
providerFriendlyName = source.providerFriendlyName;
isHomeProviderNetwork = source.isHomeProviderNetwork;
preSharedKey = source.preSharedKey;
saePasswordId = source.saePasswordId;
mNetworkSelectionStatus.copy(source.getNetworkSelectionStatus());
apBand = source.apBand;
@@ -2819,7 +2808,6 @@ public class WifiConfiguration implements Parcelable {
dest.writeLong(roamingConsortiumId);
}
dest.writeString(preSharedKey);
dest.writeString(saePasswordId);
for (String wepKey : wepKeys) {
dest.writeString(wepKey);
}
@@ -2895,7 +2883,6 @@ public class WifiConfiguration implements Parcelable {
config.roamingConsortiumIds[i] = in.readLong();
}
config.preSharedKey = in.readString();
config.saePasswordId = in.readString();
for (int i = 0; i < config.wepKeys.length; i++) {
config.wepKeys[i] = in.readString();
}