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.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