Java 类org.springframework.boot.actuate.endpoint.EndpointProperties 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:AbstractMvcEndpoint.java   
public boolean isEnabled() {
    return EndpointProperties.isEnabled(this.environment, this.enabled);
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:AbstractMvcEndpoint.java   
@Override
public boolean isSensitive() {
    return EndpointProperties.isSensitive(this.environment, this.sensitive,
            this.sensitiveDefault);
}
项目:spring-boot-concourse    文件:JolokiaMvcEndpoint.java   
@Override
public boolean isSensitive() {
    return EndpointProperties.isSensitive(this.environment, this.sensitive, true);
}
项目:spring-boot-concourse    文件:DocsMvcEndpoint.java   
@Override
public boolean isSensitive() {
    return EndpointProperties.isSensitive(this.environment, this.sensitive, false);
}
项目:spring-boot-concourse    文件:HalJsonMvcEndpoint.java   
@Override
public boolean isSensitive() {
    return EndpointProperties.isSensitive(this.environment, this.sensitive, false);
}
项目:spring-boot-concourse    文件:LogFileMvcEndpoint.java   
@Override
public boolean isSensitive() {
    return EndpointProperties.isSensitive(this.environment, this.sensitive, true);
}