wifi: Add systemAPi:setSubscriberId in NetworkAgentConfig

The wifi (mainline module) need to set the subscriberId for specific
wifi network.

Bug: 176396812
Test: TreeHugger
Change-Id: Ie97d3dad81c87d41a360558e91c83278595ff475
This commit is contained in:
lesl
2020-12-28 18:15:52 +08:00
parent dcb4051101
commit 7521c2277a
2 changed files with 1 additions and 1 deletions

View File

@@ -6224,6 +6224,7 @@ package android.net {
method @NonNull public android.net.NetworkAgentConfig.Builder setLegacyType(int);
method @NonNull public android.net.NetworkAgentConfig.Builder setLegacyTypeName(@NonNull String);
method @NonNull public android.net.NetworkAgentConfig.Builder setPartialConnectivityAcceptable(boolean);
method @NonNull public android.net.NetworkAgentConfig.Builder setSubscriberId(@Nullable String);
method @NonNull public android.net.NetworkAgentConfig.Builder setUnvalidatedConnectivityAcceptable(boolean);
}

View File

@@ -272,7 +272,6 @@ public final class NetworkAgentConfig implements Parcelable {
* Sets the subscriber ID for this network.
*
* @return this builder, to facilitate chaining.
* @hide
*/
@NonNull
public Builder setSubscriberId(@Nullable String subscriberId) {