47
47
import java .util .concurrent .atomic .AtomicInteger ;
48
48
49
49
/**
50
- * Entry point for Firebase Installations .
50
+ * Entry point for Firebase installations .
51
51
*
52
- * <p>Firebase Installations does
52
+ * <p>The Firebase installations service:
53
53
*
54
54
* <ul>
55
- * <li>provide unique identifier for a Firebase installation
56
- * <li>provide auth token of a Firebase installation
57
- * <li>provide a API to GDPR-delete a Firebase installation
55
+ * <li>provides a unique identifier for a Firebase installation
56
+ * <li>provides an auth token for a Firebase installation
57
+ * <li>provides a API to perform GDPR-compliant deletion of a Firebase installation.
58
58
* </ul>
59
59
*/
60
60
public class FirebaseInstallations implements FirebaseInstallationsApi {
@@ -212,11 +212,11 @@ public Task<String> getId() {
212
212
213
213
/**
214
214
* Returns a valid authentication token for the Firebase installation. Generates a new token if
215
- * one doesn't exist, is expired or about to expire.
215
+ * one doesn't exist, is expired, or is about to expire.
216
216
*
217
- * <p>Should only be called if the Firebase Installation is registered.
217
+ * <p>Should only be called if the Firebase installation is registered.
218
218
*
219
- * @param forceRefresh Options to get FIS Auth Token either by force refreshing or not.
219
+ * @param forceRefresh Options to get an auth token either by force refreshing or not.
220
220
*/
221
221
@ NonNull
222
222
@ Override
@@ -232,9 +232,9 @@ public Task<InstallationTokenResult> getToken(boolean forceRefresh) {
232
232
}
233
233
234
234
/**
235
- * Call to delete this Firebase app installation from Firebase backend. This call would possibly
236
- * lead Firebase Notification , Firebase RemoteConfig , Firebase Predictions or Firebase In-App
237
- * Messaging not function properly.
235
+ * Call to delete this Firebase app installation from the Firebase backend. This call may
236
+ * cause Firebase Cloud Messaging , Firebase Remote Config , Firebase Predictions, or
237
+ * Firebase In-App Messaging to not function properly.
238
238
*/
239
239
@ NonNull
240
240
@ Override
0 commit comments