Uses of Interface
com.google.api.client.auth.oauth2.CredentialRefreshListener
-
Packages that use CredentialRefreshListener Package Description com.google.api.client.auth.oauth2 Implementation of the OAuth 2.0 Authorization Framework. -
-
Uses of CredentialRefreshListener in com.google.api.client.auth.oauth2
Classes in com.google.api.client.auth.oauth2 that implement CredentialRefreshListener Modifier and Type Class Description class
CredentialStoreRefreshListener
Deprecated.(to be removed in the future) UseDataStoreCredentialRefreshListener
instead.class
DataStoreCredentialRefreshListener
Beta
Thread-safe OAuth 2.0 credential refresh listener that stores the refresh token response in the credential data store.Fields in com.google.api.client.auth.oauth2 with type parameters of type CredentialRefreshListener Modifier and Type Field Description (package private) java.util.Collection<CredentialRefreshListener>
AuthorizationCodeFlow.Builder. refreshListeners
Refresh listeners provided by the client.private java.util.Collection<CredentialRefreshListener>
AuthorizationCodeFlow. refreshListeners
Refresh listeners provided by the client.(package private) java.util.Collection<CredentialRefreshListener>
Credential.Builder. refreshListeners
Listeners for refresh token results.private java.util.Collection<CredentialRefreshListener>
Credential. refreshListeners
Unmodifiable collection of listeners for refresh token results.Methods in com.google.api.client.auth.oauth2 that return types with arguments of type CredentialRefreshListener Modifier and Type Method Description java.util.Collection<CredentialRefreshListener>
AuthorizationCodeFlow.Builder. getRefreshListeners()
Returns the listeners for refresh token results.java.util.Collection<CredentialRefreshListener>
AuthorizationCodeFlow. getRefreshListeners()
Returns the unmodifiable list of listeners for refresh token results.java.util.Collection<CredentialRefreshListener>
Credential.Builder. getRefreshListeners()
Returns the listeners for refresh token results.java.util.Collection<CredentialRefreshListener>
Credential. getRefreshListeners()
Returns the unmodifiable collection of listeners for refresh token results.Methods in com.google.api.client.auth.oauth2 with parameters of type CredentialRefreshListener Modifier and Type Method Description AuthorizationCodeFlow.Builder
AuthorizationCodeFlow.Builder. addRefreshListener(CredentialRefreshListener refreshListener)
Adds a listener for refresh token results.Credential.Builder
Credential.Builder. addRefreshListener(CredentialRefreshListener refreshListener)
Adds a listener for refresh token results.Method parameters in com.google.api.client.auth.oauth2 with type arguments of type CredentialRefreshListener Modifier and Type Method Description AuthorizationCodeFlow.Builder
AuthorizationCodeFlow.Builder. setRefreshListeners(java.util.Collection<CredentialRefreshListener> refreshListeners)
Sets the listeners for refresh token results.Credential.Builder
Credential.Builder. setRefreshListeners(java.util.Collection<CredentialRefreshListener> refreshListeners)
Sets the listeners for refresh token results.
-