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

com.didiglobal.logi.security.config.AutoConfiguration Maven / Gradle / Ivy

The newest version!
package com.didiglobal.logi.security.config;

import com.didiglobal.logi.security.properties.LogiSecurityProper;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;

/**
 * @author cjm
 */
@Configuration("logiSecurityAutoConfiguration")
@EnableConfigurationProperties(LogiSecurityProper.class)
public class AutoConfiguration {

    private final LogiSecurityProper proper;

    public AutoConfiguration(LogiSecurityProper proper) {
        this.proper = proper;
    }

    public LogiSecurityProper getProper() {
        return proper;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy