io.quarkus.oidc.IdTokenCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-oidc Show documentation
Show all versions of quarkus-oidc Show documentation
Secure your applications with OpenID Connect Adapter and IDP such as Keycloak
package io.quarkus.oidc;
import io.quarkus.oidc.runtime.ContextAwareTokenCredential;
import io.vertx.ext.web.RoutingContext;
public class IdTokenCredential extends ContextAwareTokenCredential {
public IdTokenCredential() {
this(null, null);
}
public IdTokenCredential(String token, RoutingContext context) {
super(token, "id_token", context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy