Uses of Class
org.forgerock.openig.script.Script
-
Packages that use Script Package Description org.forgerock.openig.filter Filters the requests and/or responses of HTTP.org.forgerock.openig.filter.oauth2 This package contains the OAuth2 Token validation filter that acts as an OAuth 2 Resource Server.org.forgerock.openig.filter.throttling This package contains the components used to implement a throttling rate support.org.forgerock.openig.handler Handles HTTP requests by generating responses.org.forgerock.openig.openam Integration classes specifically for ForgeRock Access Management.org.forgerock.openig.script Scripting support. -
-
Uses of Script in org.forgerock.openig.filter
Methods in org.forgerock.openig.filter with parameters of type Script Modifier and Type Method Description ScriptableFilter
ScriptableFilter.Heaplet. newInstance(Script script, Heap heap)
-
Uses of Script in org.forgerock.openig.filter.oauth2
Methods in org.forgerock.openig.filter.oauth2 with parameters of type Script Modifier and Type Method Description ScriptableAccessTokenResolver
ScriptableAccessTokenResolver.Heaplet. newInstance(Script script, Heap heap)
ScriptableResourceAccess
ScriptableResourceAccess.Heaplet. newInstance(Script script, Heap heap)
-
Uses of Script in org.forgerock.openig.filter.throttling
Methods in org.forgerock.openig.filter.throttling with parameters of type Script Modifier and Type Method Description ScriptableThrottlingPolicy
ScriptableThrottlingPolicy.Heaplet. newInstance(Script script, Heap heap)
-
Uses of Script in org.forgerock.openig.handler
Methods in org.forgerock.openig.handler with parameters of type Script Modifier and Type Method Description ScriptableHandler
ScriptableHandler.Heaplet. newInstance(Script script, Heap heap)
-
Uses of Script in org.forgerock.openig.openam
Methods in org.forgerock.openig.openam with parameters of type Script Modifier and Type Method Description ScriptableResourceUriProvider
ScriptableResourceUriProvider.Heaplet. newInstance(Script script, Heap heap)
-
Uses of Script in org.forgerock.openig.script
Methods in org.forgerock.openig.script that return Script Modifier and Type Method Description static Script
Script. fromFile(Environment environment, String mimeType, String file)
Loads a script having the provided content type and file name.static Script
Script. fromSource(Environment environment, String mimeType, String source)
Loads a script having the provided content type and content.static Script
Script. fromSource(Environment environment, String mimeType, String... sourceLines)
Loads a script having the provided content type and content.Methods in org.forgerock.openig.script with parameters of type Script Modifier and Type Method Description protected abstract AbstractScriptableHeapObject<?>
AbstractScriptableHeapObject.AbstractScriptableHeaplet. newInstance(Script script, Heap heap)
Creates the new heap object instance using the provided script.Constructors in org.forgerock.openig.script with parameters of type Script Constructor Description AbstractScriptableHeapObject(Script compiledScript, Heap heap, String name)
Creates a new scriptable heap object using the provided compiled script.
-