![JAR search and dependency download from the Maven repository](/logo.png)
com.kakawait.spring.boot.security.cas.autoconfigure.CasSecurityCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-security-spring-boot-autoconfigure Show documentation
Show all versions of cas-security-spring-boot-autoconfigure Show documentation
Spring boot autoconfigure for Apereo CAS client fully integrated with Spring security
The newest version!
package com.kakawait.spring.boot.security.cas.autoconfigure;
import org.springframework.boot.autoconfigure.condition.AllNestedConditions;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
/**
* @author Thibaud Leprêtre
*/
@SuppressWarnings("unused")
public class CasSecurityCondition extends AllNestedConditions {
public CasSecurityCondition() {
super(ConfigurationPhase.REGISTER_BEAN);
}
@ConditionalOnProperty(value = "security.cas.enabled", havingValue = "true", matchIfMissing = true)
static class EnabledProperty {
}
@ConditionalOnProperty(value = "security.cas.server.base-url")
static class ServerInstanceProperty {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy