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.quarkus.security.credential.TokenCredential;

public class IdTokenCredential extends TokenCredential {
    private final boolean internal;

    public IdTokenCredential() {
        this(null);
    }

    public IdTokenCredential(String token) {
        this(token, false);
    }

    public IdTokenCredential(String token, boolean internal) {
        super(token, "id_token");
        this.internal = internal;
    }

    public boolean isInternal() {
        return internal;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy