com.github.ulisesbocchio.spring.boot.security.saml.properties.SAMLContextProviderProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-security-saml Show documentation
Show all versions of spring-boot-security-saml Show documentation
Eases Integration between Spring Boot and spring-security-saml through properties and adapters
The newest version!
package com.github.ulisesbocchio.spring.boot.security.saml.properties;
import lombok.Data;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import org.springframework.security.saml.context.SAMLContextProvider;
import org.springframework.security.saml.context.SAMLContextProviderLB;
/**
* Configuration Properties For {@link SAMLContextProvider}.
*
* @author Ulises Bocchio
*/
@Data
public class SAMLContextProviderProperties {
/**
* Enables Load Balancer configuration through {@link SAMLContextProviderLB}
*/
@NestedConfigurationProperty
private SAMLContextProviderLBProperties lb = new SAMLContextProviderLBProperties();
}