Package io.quarkus.oidc.runtime
Class OidcJsonWebTokenProducer
- java.lang.Object
-
- io.quarkus.oidc.runtime.OidcJsonWebTokenProducer
-
@Priority(2) @Alternative @RequestScoped public class OidcJsonWebTokenProducer extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) io.quarkus.security.identity.SecurityIdentityidentity
-
Constructor Summary
Constructors Constructor Description OidcJsonWebTokenProducer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) org.eclipse.microprofile.jwt.JsonWebTokencurrentAccessToken()The producer method for the current access token(package private) org.eclipse.microprofile.jwt.JsonWebTokencurrentIdToken()The producer method for the current id token
-
-
-
Method Detail
-
currentAccessToken
@Produces @RequestScoped org.eclipse.microprofile.jwt.JsonWebToken currentAccessToken()
The producer method for the current access token- Returns:
- the access token
-
currentIdToken
@Produces @RequestScoped org.eclipse.microprofile.jwt.JsonWebToken currentIdToken()
The producer method for the current id token- Returns:
- the id token
-
-