Examples of VdcList


Examples of com.emc.vipr.model.object.zone.VdcList

    public Vdcs(RestClient client) {
        this.client = client;
    }

    public List<VdcRestRep> list() {
        VdcList list = client.get(VdcList.class, PathConstants.VDC_LIST_URL);
        return ResourceUtils.defaultList(list != null ? list.getVdcList() : 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.