io.quarkus.oidc.runtime.ContextAwareTokenCredential 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.runtime;
import io.quarkus.security.credential.TokenCredential;
import io.vertx.ext.web.RoutingContext;
public class ContextAwareTokenCredential extends TokenCredential {
private RoutingContext context;
protected ContextAwareTokenCredential(String token, String type, RoutingContext context) {
super(token, type);
this.context = context;
}
RoutingContext getContext() {
return context;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy