Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getHealthCheckType

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getHealthCheckType

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getHealthCheckType.

Prototype

String getHealthCheckType();

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   www. j  a  v  a  2  s.co m
    CFApplication data = getSummaryData();
    return data != null ? data.getHealthCheckType() : DeploymentProperties.DEFAULT_HEALTH_CHECK_TYPE;
}