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

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

Introduction

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

Prototype

List<String> getUris();

Source Link

Usage

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

@Override
public String getLiveHost() {
    CFApplication app = getSummaryData();
    if (app != null) {
        List<String> uris = app.getUris();
        if (uris != null) {
            for (String uri : uris) {
                return uri;
            }/*from   www .j ava  2s . c om*/
        }
    }
    return null;
}