Package com.emc.vipr.model.object.zone

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

Related Classes of com.emc.vipr.model.object.zone.VdcList

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.