@@ -447,8 +447,8 @@ protected UserRecord execute() throws FirebaseAuthException {
447
447
}
448
448
449
449
/**
450
- * Gets a page of users starting from the specified {@code pageToken}. Page size will be limited
451
- * to 1000 users.
450
+ * Gets a page of users starting from the specified {@code pageToken}. Page size is limited to
451
+ * 1000 users.
452
452
*
453
453
* @param pageToken A non-empty page token string, or null to retrieve the first page of users.
454
454
* @return A {@link ListUsersPage} instance.
@@ -1077,8 +1077,8 @@ protected String execute() throws FirebaseAuthException {
1077
1077
}
1078
1078
1079
1079
/**
1080
- * Creates a new OIDC Auth provider config with the attributes contained in the specified
1081
- * {@link OidcProviderConfig.CreateRequest}.
1080
+ * Creates a new OpenID Connect auth provider config with the attributes contained in the
1081
+ * specified {@link OidcProviderConfig.CreateRequest}.
1082
1082
*
1083
1083
* @param request A non-null {@link OidcProviderConfig.CreateRequest} instance.
1084
1084
* @return An {@link OidcProviderConfig} instance corresponding to the newly created provider
@@ -1124,8 +1124,8 @@ protected OidcProviderConfig execute() throws FirebaseAuthException {
1124
1124
}
1125
1125
1126
1126
/**
1127
- * Updates an existing OIDC Auth provider config with the attributes contained in the specified
1128
- * {@link OidcProviderConfig.UpdateRequest}.
1127
+ * Updates an existing OpenID Connect auth provider config with the attributes contained in the
1128
+ * specified {@link OidcProviderConfig.UpdateRequest}.
1129
1129
*
1130
1130
* @param request A non-null {@link OidcProviderConfig.UpdateRequest} instance.
1131
1131
* @return A {@link OidcProviderConfig} instance corresponding to the updated provider config.
@@ -1169,7 +1169,7 @@ protected OidcProviderConfig execute() throws FirebaseAuthException {
1169
1169
}
1170
1170
1171
1171
/**
1172
- * Gets the provider OIDC Auth config corresponding to the specified provider ID.
1172
+ * Gets the OpenID Connect auth provider corresponding to the specified provider ID.
1173
1173
*
1174
1174
* @param providerId A provider ID string.
1175
1175
* @return An {@link OidcProviderConfig} instance.
@@ -1184,7 +1184,7 @@ public OidcProviderConfig getOidcProviderConfig(@NonNull String providerId)
1184
1184
1185
1185
/**
1186
1186
* Similar to {@link #getOidcProviderConfig(String)} but performs the operation asynchronously.
1187
- * Page size will be limited to 100 provider configs.
1187
+ * Page size is limited to 100 provider configs.
1188
1188
*
1189
1189
* @param providerId A provider ID string.
1190
1190
* @return An {@code ApiFuture} which will complete successfully with an
@@ -1212,8 +1212,8 @@ protected OidcProviderConfig execute() throws FirebaseAuthException {
1212
1212
}
1213
1213
1214
1214
/**
1215
- * Gets a page of OIDC Auth provider configs starting from the specified {@code pageToken}. Page
1216
- * size will be limited to 100 provider configs.
1215
+ * Gets a page of OpenID Connect auth provider configs starting from the specified
1216
+ * {@code pageToken}. Page size is limited to 100 provider configs.
1217
1217
*
1218
1218
* @param pageToken A non-empty page token string, or null to retrieve the first page of provider
1219
1219
* configs.
@@ -1228,7 +1228,8 @@ public ListProviderConfigsPage<OidcProviderConfig> listOidcProviderConfigs(
1228
1228
}
1229
1229
1230
1230
/**
1231
- * Gets a page of OIDC Auth provider configs starting from the specified {@code pageToken}.
1231
+ * Gets a page of OpenID Connect auth provider configs starting from the specified
1232
+ * {@code pageToken}.
1232
1233
*
1233
1234
* @param pageToken A non-empty page token string, or null to retrieve the first page of provider
1234
1235
* configs.
@@ -1246,7 +1247,7 @@ public ListProviderConfigsPage<OidcProviderConfig> listOidcProviderConfigs(
1246
1247
1247
1248
/**
1248
1249
* Similar to {@link #listOidcProviderConfigs(String)} but performs the operation asynchronously.
1249
- * Page size will be limited to 100 provider configs.
1250
+ * Page size is limited to 100 provider configs.
1250
1251
*
1251
1252
* @param pageToken A non-empty page token string, or null to retrieve the first page of provider
1252
1253
* configs.
@@ -1299,7 +1300,7 @@ protected ListProviderConfigsPage<OidcProviderConfig> execute()
1299
1300
}
1300
1301
1301
1302
/**
1302
- * Deletes the OIDC Auth provider config identified by the specified provider ID.
1303
+ * Deletes the OpenID Connect auth provider config identified by the specified provider ID.
1303
1304
*
1304
1305
* @param providerId A provider ID string.
1305
1306
* @throws IllegalArgumentException If the provider ID string is null or empty, or is not prefixed
@@ -1431,7 +1432,7 @@ protected SamlProviderConfig execute() throws FirebaseAuthException {
1431
1432
}
1432
1433
1433
1434
/**
1434
- * Gets the SAML provider Auth config corresponding to the specified provider ID.
1435
+ * Gets the SAML Auth provider config corresponding to the specified provider ID.
1435
1436
*
1436
1437
* @param providerId A provider ID string.
1437
1438
* @return An {@link SamlProviderConfig} instance.
@@ -1446,7 +1447,7 @@ public SamlProviderConfig getSamlProviderConfig(@NonNull String providerId)
1446
1447
1447
1448
/**
1448
1449
* Similar to {@link #getSamlProviderConfig(String)} but performs the operation asynchronously.
1449
- * Page size will be limited to 100 provider configs.
1450
+ * Page size is limited to 100 provider configs.
1450
1451
*
1451
1452
* @param providerId A provider ID string.
1452
1453
* @return An {@code ApiFuture} which will complete successfully with an
@@ -1475,7 +1476,7 @@ protected SamlProviderConfig execute() throws FirebaseAuthException {
1475
1476
1476
1477
/**
1477
1478
* Gets a page of SAML Auth provider configs starting from the specified {@code pageToken}. Page
1478
- * size will be limited to 100 provider configs.
1479
+ * size is limited to 100 provider configs.
1479
1480
*
1480
1481
* @param pageToken A non-empty page token string, or null to retrieve the first page of provider
1481
1482
* configs.
@@ -1509,7 +1510,7 @@ public ListProviderConfigsPage<SamlProviderConfig> listSamlProviderConfigs(
1509
1510
1510
1511
/**
1511
1512
* Similar to {@link #listSamlProviderConfigs(String)} but performs the operation asynchronously.
1512
- * Page size will be limited to 100 provider configs.
1513
+ * Page size is limited to 100 provider configs.
1513
1514
*
1514
1515
* @param pageToken A non-empty page token string, or null to retrieve the first page of provider
1515
1516
* configs.
0 commit comments