io.quarkus.oidc.RefreshToken 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 RefreshToken extends TokenCredential {
public RefreshToken() {
this(null);
}
public RefreshToken(String refreshToken) {
super(refreshToken, "refresh_token");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy