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

com.emc.storageos.model.systems.StorageSystemBulkRep 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.systems;

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_storage_systems")
public class StorageSystemBulkRep extends BulkRestRep {
    private List storageSystems;

    /**
     * List of storage systems
     * 
     * @valid none
     */
    @XmlElement(name = "storage_system")
    public List getStorageSystems() {
        if (storageSystems == null) {
            storageSystems = new ArrayList();
        }
        return storageSystems;
    }

    public void setStorageSystems(List storageSystems) {
        this.storageSystems = storageSystems;
    }

    public StorageSystemBulkRep() {
    }

    public StorageSystemBulkRep(List storageSystems) {
        this.storageSystems = storageSystems;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy