Package com.esri.arcgisruntime.security
Interface AuthenticationManager.CredentialCache.CredentialCacheChangedListener
-
- Enclosing class:
- AuthenticationManager.CredentialCache
public static interface AuthenticationManager.CredentialCache.CredentialCacheChangedListener
The listener interface to get notified when the CredentialCache changes.- Since:
- 100.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
credentialCacheChanged(AuthenticationManager.CredentialCache.CredentialCacheChangedEvent event)
Invoked when a credential is added or removed or when a credential that is currently in the cache is updated or when all credentials are cleared from the CredentialCache.
-
-
-
Method Detail
-
credentialCacheChanged
void credentialCacheChanged(AuthenticationManager.CredentialCache.CredentialCacheChangedEvent event)
Invoked when a credential is added or removed or when a credential that is currently in the cache is updated or when all credentials are cleared from the CredentialCache.Implementations of this method should not block the calling thread. Any long running operations, such as I/O operations, should be done on another thread.
- Parameters:
event
- a CredentialCacheChangedEvent object- Since:
- 100.8.0
-
-