All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.storageos.model.network.SanZonesRestRep Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.network;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * This is a list of the SAN zones returned from the NetworkSystem.
 */
@XmlRootElement(name = "san_zones")
public class SanZonesRestRep {
    private List zones;

    /**
     * A list of San Zones. Each zone has a name and a list of zone members.
     * 
     * @valid none
     */
    @XmlElement(name = "san_zone")
    public List getZones() {
        if (zones == null) {
            zones = new ArrayList();
        }
        return zones;
    }

    public void setZones(List zones) {
        this.zones = zones;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy