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

be.looorent.keycloak.JsonWebKeySet Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package be.looorent.keycloak;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * Set of JWK provided by Keycloak.
 * @author Lorent Lempereur - [email protected]
 */
class JsonWebKeySet {

    @JsonProperty("keys")
    private final List keys;

    @JsonCreator
    public JsonWebKeySet(@JsonProperty("keys") List keys) {
        this.keys = keys;
    }

    public List getKeys() {
        return keys;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy