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

io.quarkus.oidc.UserInfo 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 javax.json.JsonObject;

import io.quarkus.oidc.runtime.AbstractJsonObjectResponse;

public class UserInfo extends AbstractJsonObjectResponse {

    public UserInfo() {
    }

    public UserInfo(String userInfoJson) {
        super(userInfoJson);
    }

    public UserInfo(JsonObject json) {
        super(json);
    }

    public String getUserInfoString() {
        return getNonNullJsonString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy