io.quarkus.oidc.TokenIntrospection 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 javax.json.JsonObject;
import io.quarkus.oidc.runtime.AbstractJsonObjectResponse;
/**
* Represents a token introspection result
*
*/
public class TokenIntrospection extends AbstractJsonObjectResponse {
public TokenIntrospection() {
}
public TokenIntrospection(String introspectionJson) {
super(introspectionJson);
}
public TokenIntrospection(JsonObject json) {
super(json);
}
public String getIntrospectionString() {
return getNonNullJsonString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy