Java 类org.springframework.boot.actuate.autoconfigure.ShellProperties.CrshShellProperties 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:ShellPropertiesTests.java   
@Bean
public CrshShellProperties testProperties() {
    return new CrshShellProperties() {

        @Override
        protected void applyToCrshShellConfig(Properties config) {
            config.put("test.uuid", uuid);
        }
    };
}
项目:spring-boot-concourse    文件:ShellPropertiesTests.java   
@Bean
public CrshShellProperties testProperties() {
    return new CrshShellProperties() {

        @Override
        protected void applyToCrshShellConfig(Properties config) {
            config.put("test.uuid", uuid);
        }
    };
}
项目:contestparser    文件:ShellPropertiesTests.java   
@Bean
public CrshShellProperties testProperties() {
    return new CrshShellProperties() {

        @Override
        protected void applyToCrshShellConfig(Properties config) {
            config.put("test.uuid", uuid);
        }
    };
}