Package org.eclipse.orion.server.cf.objects

Examples of org.eclipse.orion.server.cf.objects.App


      if (!getStatus.isOK())
        return getStatus;

      JSONObject summaryJSON = getStatus.getJsonData();

      this.app = new App();
      this.app.setAppJSON(appJSON);
      this.app.setSummaryJSON(summaryJSON);
      this.app.setGuid(appJSON.getString("guid"));

      return new ServerStatus(Status.OK_STATUS, HttpServletResponse.SC_OK, this.app.toJSON());
View Full Code Here


      if (!getStatus.isOK())
        return getStatus;

      JSONObject summaryJSON = getStatus.getJsonData();

      this.app = new App();
      this.app.setAppJSON(appJSON);
      this.app.setSummaryJSON(summaryJSON);

      return new ServerStatus(Status.OK_STATUS, HttpServletResponse.SC_OK, this.app.toJSON());
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.eclipse.orion.server.cf.objects.App

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.