keycloak-scim/topics/oidc/java/adapter-context.adoc
Stian Thorgersen 294312dc81 Re-structuring
2016-06-01 13:02:44 +02:00

12 lines
628 B
Text
Executable file

=== Keycloak Security Context
The `KeycloakSecurityContext` interface is available if you need to look at the access token directly.
This context is also useful if you need to get the encoded access token so you can make additional REST invocations.
In servlet environments it is available in secured invocations as an attribute in HttpServletRequest.
Or, it is available in secure and insecure requests in the HttpSession for browser apps.
[source]
----
httpServletRequest.getAttribute(KeycloakSecurityContext.class.getName());
httpServletRequest.getSession().getAttribute(KeycloakSecurityContext.class.getName());
----