io.fusionauth.domain.oauth2.JWKSResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* Copyright (c) 2018-2019, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.oauth2;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.Buildable;
import io.fusionauth.jwks.domain.JSONWebKey;
/**
* @author Daniel DeGroff
*/
public class JWKSResponse implements Buildable {
// Return an empty collection for this endpoint
@JsonInclude(JsonInclude.Include.NON_ABSENT)
public List keys;
@JacksonConstructor
public JWKSResponse() {
}
public JWKSResponse(List keys) {
this.keys = keys;
}
}