T
- The type of authentication data held by the provider (e.g. for security tokens this
could be a string)public interface ConfigurableRefreshOnNotAuthenticatedProvider<T>
For authentication providers with refreshable authentication data (e.g. those which wrap a security token received from a remote service), this interface flags that when a caller receives a NotAuthenticated error (HTTP 401) that they can refresh the authentication data and retry their request.
Consistent HTTP 401s would indicate that there is potentially an issue outside the issued token, so only making a single retry is suggested.
Modifier and Type | Method and Description |
---|---|
T |
refreshIfExpiringWithin(Duration time)
Refreshes the authentication data used by the provider if the token is expiring within the
provided duration
|
T |
refreshIfExpiringWithin(Duration time,
boolean refreshKeys)
Refreshes the authentication data used by the provider if the token is expiring within the
provided duration and allows to enable/disable refresh of keys
|
T refreshIfExpiringWithin(Duration time)
Refreshes the authentication data used by the provider if the token is expiring within the provided duration
time
- the duration to checkT refreshIfExpiringWithin(Duration time, boolean refreshKeys)
Refreshes the authentication data used by the provider if the token is expiring within the provided duration and allows to enable/disable refresh of keys
time
- the duration to checkrefreshKeys
- boolean value to enable/disable refresh of keysCopyright © 2016–2024. All rights reserved.