Examples of CasRegisteredApplicationListRep


Examples of com.emc.vipr.model.object.cashead.CasRegisteredApplicationListRep

    public String getProfilePea(URI clusterId, String profileName) {
        return client.get(String.class, CAS_PROFILE_PEA_URL, clusterId, profileName);
    }

    public List<CasRegisteredApplication> getRegisteredApplications(URI clusterId) {
        CasRegisteredApplicationListRep list = client.get(CasRegisteredApplicationListRep.class, CAS_APPLICATIONS_URL,
                clusterId);
        return ResourceUtils.defaultList(list != null ? list.getCasRegisteredApplications() : null);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.