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

com.contentgrid.spring.boot.autoconfigure.security.MultiTenantOAuth2Properties Maven / Gradle / Ivy

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<>();

}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy