CacheRefreshReason Enum
- java.
lang. Object - java.
lang. Enum - com.
microsoft. aad. msal4j. CacheRefreshReason
- com.
- java.
public enum CacheRefreshReason
extends java.lang.Enum<CacheRefreshReason>
Specifies the reason for fetching the access token from the identity provider when using acquireTokenSilently(SilentParameters parameters)
Fields
CLAIMS |
Silent call was made with claims set |
EXPIRED |
Cached access token was expired and successfully refreshed |
FORCE_REFRESH |
Silent call was made with the force refresh option |
NOT_APPLICABLE |
Token did not need to be refreshed, or was retrieved in a non-silent call |
NO_CACHED_ACCESS_TOKEN |
Access token was missing from the cache, but a valid refresh token was used to retrieve a new access token |
PROACTIVE_REFRESH |
Cached access token was not expired but was after the 'refresh_in' value, and was proactively refreshed before the expiration date |
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
valueOf(String name)
public static CacheRefreshReason valueOf(String name)
Parameters
- name
- java.lang.String