com.contentgrid.spring.boot.autoconfigure.security.MultiTenantOAuth2Properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contentgrid-spring-boot-autoconfigure Show documentation
Show all versions of contentgrid-spring-boot-autoconfigure Show documentation
Module with Spring Boot AutoConfiguration for ContentGrid applications
The newest version!
package com.contentgrid.spring.boot.autoconfigure.security;
import java.util.ArrayList;
import java.util.List;
import lombok.Getter;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "contentgrid.security.oauth2")
public class MultiTenantOAuth2Properties {
@Getter
private final List trustedJwtIssuers = new ArrayList<>();
}