本文整理匯總了Java中org.springframework.boot.actuate.endpoint.EndpointProperties類的典型用法代碼示例。如果您正苦於以下問題:Java EndpointProperties類的具體用法?Java EndpointProperties怎麽用?Java EndpointProperties使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
EndpointProperties類屬於org.springframework.boot.actuate.endpoint包,在下文中一共展示了EndpointProperties類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isEnabled
import org.springframework.boot.actuate.endpoint.EndpointProperties; //導入依賴的package包/類
public boolean isEnabled() {
return EndpointProperties.isEnabled(this.environment, this.enabled);
}
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:4,代碼來源:AbstractMvcEndpoint.java
示例2: isSensitive
import org.springframework.boot.actuate.endpoint.EndpointProperties; //導入依賴的package包/類
@Override
public boolean isSensitive() {
return EndpointProperties.isSensitive(this.environment, this.sensitive,
this.sensitiveDefault);
}
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:6,代碼來源:AbstractMvcEndpoint.java
示例3: isSensitive
import org.springframework.boot.actuate.endpoint.EndpointProperties; //導入依賴的package包/類
@Override
public boolean isSensitive() {
return EndpointProperties.isSensitive(this.environment, this.sensitive, true);
}
示例4: isSensitive
import org.springframework.boot.actuate.endpoint.EndpointProperties; //導入依賴的package包/類
@Override
public boolean isSensitive() {
return EndpointProperties.isSensitive(this.environment, this.sensitive, false);
}