Package com.emc.storageos.model.network

Examples of com.emc.storageos.model.network.Fabrics


     * @param id
     *        the ID of the network system.
     * @return the list of SAN fabric names.
     */
    public List<String> getSanFabrics(URI id) {
        Fabrics response = client.get(Fabrics.class, getIdUrl() + "/san-fabrics", id);
        return defaultList(response.getFabricIds());
    }
View Full Code Here


     * @param id
     *        the ID of the network system.
     * @return the list of SAN fabric names.
     */
    public List<String> getSanFabrics(URI id) {
        Fabrics response = client.get(Fabrics.class, getIdUrl() + "/san-fabrics", id);
        return defaultList(response.getFabricIds());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.network.Fabrics

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.