Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.deployment DeploymentProperties DEFAULT_HEALTH_CHECK_TYPE

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry.deployment DeploymentProperties DEFAULT_HEALTH_CHECK_TYPE

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.deployment DeploymentProperties DEFAULT_HEALTH_CHECK_TYPE.

Prototype

String DEFAULT_HEALTH_CHECK_TYPE

To view the source code for org.springframework.ide.eclipse.boot.dash.cloudfoundry.deployment DeploymentProperties DEFAULT_HEALTH_CHECK_TYPE.

Click Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.cloudfoundry.CloudAppDashElement.java

public String getHealthCheck() {
    String hc = healthCheckOverride.getValue();
    if (hc != null) {
        return hc;
    }//from  w  w  w .j  a  v a 2 s .  c om
    CFApplication data = getSummaryData();
    return data != null ? data.getHealthCheckType() : DeploymentProperties.DEFAULT_HEALTH_CHECK_TYPE;
}