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

io.fusionauth.domain.oauth2.JWKSResponse Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * 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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy