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

com.emc.storageos.model.network.NetworkSystemBulkRep 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 com.emc.storageos.model.BulkRestRep;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;

@XmlRootElement(name = "bulk_network_systems")
public class NetworkSystemBulkRep extends BulkRestRep {
    private List networkSystems;

    /**
     * List of network system objects that exist in ViPR.
     * 
     * @valid none
     */
    @XmlElement(name = "network_system")
    public List getNetworkSystems() {
        if (networkSystems == null) {
            networkSystems = new ArrayList();
        }
        return networkSystems;
    }

    public void setNetworkSystems(List networkSystems) {
        this.networkSystems = networkSystems;
    }

    public NetworkSystemBulkRep() {
    }

    public NetworkSystemBulkRep(List networkSystems) {
        this.networkSystems = networkSystems;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy