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

com.sflpro.identity.api.common.dtos.auth.JwksResponseDto Maven / Gradle / Ivy

package com.sflpro.identity.api.common.dtos.auth;

import java.util.Set;

/**
 * Company: SFL LLC
 * Created on 11/06/2020
 *
 * @author Davit Harutyunyan
 */
public class JwksResponseDto {

    private Set keys;

    public JwksResponseDto() {
        super();
    }

    public JwksResponseDto(Set keys) {
        this.keys = keys;
    }

    public Set getKeys() {
        return keys;
    }

    public void setKeys(Set keys) {
        this.keys = keys;
    }
}