Package org.iplantc.agave.client.model

Examples of org.iplantc.agave.client.model.ApplicationSummary


      AppsApi api = new AppsApi(token);
      MultipleApplicationResponse response = api.list(false, false);
      List<ApplicationSummary> apps = response.getResult();
      Assert.assertFalse(apps.isEmpty(), "No apps returned from public and private query");
     
      ApplicationSummary appSummary = apps.get(0);
     
      SingleApplicationResponse appResponse = api.get(appSummary.getId());
     
      Application app = appResponse.getResult();
      Assert.assertNotNull(app, "Named app not returned from api");
     
    } catch (ApiException e) {
View Full Code Here

TOP

Related Classes of org.iplantc.agave.client.model.ApplicationSummary

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.