be.looorent.keycloak.JsonWebKeySet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keycloak-micronaut-adapter Show documentation
Show all versions of keycloak-micronaut-adapter Show documentation
Create API middleware to check Authorization headers against Keycloak
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