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

io.quarkus.oidc.IdTokenCredential 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;

import io.vertx.ext.web.RoutingContext;

public class IdTokenCredential extends OidcTokenCredential {

    public IdTokenCredential() {
        this(null, null);
    }

    public IdTokenCredential(String token, RoutingContext context) {
        super(token, "id_token", context);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy