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

org.apereo.cas.config.CasDelegatedAuthenticationOidcAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package org.apereo.cas.config;

import org.apereo.cas.configuration.CasConfigurationProperties;
import org.apereo.cas.configuration.features.CasFeatureModule;
import org.apereo.cas.util.spring.boot.ConditionalOnFeatureEnabled;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Import;

/**
 * This is {@link CasDelegatedAuthenticationOidcAutoConfiguration}.
 *
 * @author Misagh Moayyed
 * @since 7.1.0
 */
@EnableConfigurationProperties(CasConfigurationProperties.class)
@ConditionalOnFeatureEnabled(feature = CasFeatureModule.FeatureCatalog.DelegatedAuthentication, module = "oidc")
@AutoConfiguration
@Import(DelegatedAuthenticationOidcConfiguration.class)
public class CasDelegatedAuthenticationOidcAutoConfiguration {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy