All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.oidc.runtime.ContextAwareTokenCredential Maven / Gradle / Ivy

Go to download

Secure your applications with OpenID Connect Adapter and IDP such as Keycloak

There is a newer version: 3.17.5
Show newest version
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