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

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

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2008-2013 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_update")
public class SanZoneUpdateParams {

    private List updateZones;

    public SanZoneUpdateParams() {
    }

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

    public void setUpdateZones(List updateZones) {
        this.updateZones = updateZones;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy