Package com.nimbusds.jose.jwk.source
Class RefreshAheadCachingJWKSetSource.ScheduledRefreshFailed<C extends SecurityContext>
- java.lang.Object
-
- com.nimbusds.jose.jwk.source.RefreshAheadCachingJWKSetSource.ScheduledRefreshFailed<C>
-
- All Implemented Interfaces:
Event<CachingJWKSetSource<C>,C>
- Enclosing class:
- RefreshAheadCachingJWKSetSource<C extends SecurityContext>
public static class RefreshAheadCachingJWKSetSource.ScheduledRefreshFailed<C extends SecurityContext> extends Object
Scheduled JWK refresh failed event.
-
-
Constructor Summary
Constructors Constructor Description ScheduledRefreshFailed(CachingJWKSetSource<C> source, Exception exception, C context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CgetContext()Returns the optional context.ExceptiongetException()SgetSource()Returns the event source.
-
-
-
Constructor Detail
-
ScheduledRefreshFailed
public ScheduledRefreshFailed(CachingJWKSetSource<C> source, Exception exception, C context)
-
-
Method Detail
-
getException
public Exception getException()
-
getSource
public S getSource()
Description copied from interface:EventReturns the event source.- Specified by:
getSourcein interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>- Returns:
- The event source.
-
getContext
public C getContext()
Description copied from interface:EventReturns the optional context.- Specified by:
getContextin interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>- Returns:
- The optional context,
nullif not specified.
-
-