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

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

Introduction

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

Prototype

UUID getGuid();

Source Link

Usage

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

public UUID getAppGuid() {
    CFApplication app = getSummaryData();
    if (app != null) {
        return app.getGuid();
    }/* ww  w  . j a  v  a  2  s.  c  o  m*/
    return null;
}