Package com.cumulocity.rest.representation.application

Examples of com.cumulocity.rest.representation.application.ApplicationCollectionRepresentation


    private List<ApplicationRepresentation> getApplicationsByName(Client httpClient, String appName) {
        String host = platform.getHost();
        ClientResponse apps = httpClient.resource(host + APPLICATIONS_BY_NAME_URI + appName).get(ClientResponse.class);
        String body = apps.getEntity(String.class);
        ApplicationCollectionRepresentation appsRep = JSONBase.fromJSON(body, ApplicationCollectionRepresentation.class);
        return appsRep.getApplications();
    }
View Full Code Here

TOP

Related Classes of com.cumulocity.rest.representation.application.ApplicationCollectionRepresentation

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.