Package com.nimbusds.jose.jwk.source
Class RetryingJWKSetSource.RetrialEvent<C extends SecurityContext>
- java.lang.Object
-
- com.nimbusds.jose.jwk.source.RetryingJWKSetSource.RetrialEvent<C>
-
- All Implemented Interfaces:
Event<RetryingJWKSetSource<C>,C>
- Enclosing class:
- RetryingJWKSetSource<C extends SecurityContext>
public static class RetryingJWKSetSource.RetrialEvent<C extends SecurityContext> extends Object
Retrial event.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description C
getContext()
Returns the optional context.Exception
getException()
Returns the exception that caused the retrial.S
getSource()
Returns the event source.
-
-
-
Method Detail
-
getException
public Exception getException()
Returns the exception that caused the retrial.- Returns:
- The exception.
-
getSource
public S getSource()
Description copied from interface:Event
Returns the event source.- Specified by:
getSource
in interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>
- Returns:
- The event source.
-
getContext
public C getContext()
Description copied from interface:Event
Returns the optional context.- Specified by:
getContext
in interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>
- Returns:
- The optional context,
null
if not specified.
-
-