Class ScriptableAccessTokenResolver
java.lang.Object
org.forgerock.openig.script.AbstractScriptableHeapObject<AccessTokenInfo>
org.forgerock.openig.filter.oauth2.ScriptableAccessTokenResolver
- All Implemented Interfaces:
Closeable
,AutoCloseable
,AccessTokenResolver
public class ScriptableAccessTokenResolver
extends AbstractScriptableHeapObject<AccessTokenInfo>
implements AccessTokenResolver
A Scriptable access token resolver. This access token resolver acts as a simple wrapper around the
scripting engine. Scripts are provided with the bindings provided by
AbstractScriptableHeapObject
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Creates and initializes a scriptable access token resolver in a heap environment.Nested classes/interfaces inherited from class org.forgerock.openig.script.AbstractScriptableHeapObject
AbstractScriptableHeapObject.AbstractScriptableHeaplet<V>
-
Method Summary
Modifier and TypeMethodDescriptionResolves a given access token against an authorization server.Methods inherited from class org.forgerock.openig.script.AbstractScriptableHeapObject
close, runScript, runScriptAsync, setArgs, setClientHandler
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.forgerock.http.oauth2.AccessTokenResolver
resolve
-
Method Details
-
resolve
public Promise<AccessTokenInfo,AccessTokenException> resolve(Context context, Supplier<Request, IOException> request, String token) Description copied from interface:AccessTokenResolver
Resolves a given access token against an authorization server.- Specified by:
resolve
in interfaceAccessTokenResolver
- Parameters:
context
- Context chain used to keep a relationship between requests (tracking)request
- a supplier for the HTTP request the access token was presented on. The request should be defensively copied by the caller in case the resolver needs to consume the entity.token
- token identifier to be resolved- Returns:
- a promise completed either with a valid
AccessTokenInfo
(well-formed, known by the server), or by an exception
-