Package com.emc.storageos.model.varray

Examples of com.emc.storageos.model.varray.VirtualArrayConnectivityList


     * @param id
     *        the ID of the virtual array.
     * @return the list of connectivity information.
     */
    public List<VirtualArrayConnectivityRestRep> getConnectivity(URI id) {
        VirtualArrayConnectivityList response = client.get(VirtualArrayConnectivityList.class, getIdUrl()
                + "/connectivity", id);
        return defaultList(response.getConnections());
    }
View Full Code Here


     * @param id
     *        the ID of the virtual array.
     * @return the list of connectivity information.
     */
    public List<VirtualArrayConnectivityRestRep> getConnectivity(URI id) {
        VirtualArrayConnectivityList response = client.get(VirtualArrayConnectivityList.class, getIdUrl()
                + "/connectivity", id);
        return defaultList(response.getConnections());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.varray.VirtualArrayConnectivityList

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.