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

com.emc.storageos.model.block.tier.StorageTierBulkRep 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.block.tier;

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_tiers")
public class StorageTierBulkRep extends BulkRestRep {
    private List storageTiers;

    /**
     * List of storage tiers where a storage tier is a
     * collection of multiple pools.
     * 
     * @valid none
     */
    @XmlElement(name = "storage_tier")
    public List getStorageTiers() {
        if (storageTiers == null) {
            storageTiers = new ArrayList();
        }
        return storageTiers;
    }

    public void setStorageTiers(List storageTiers) {
        this.storageTiers = storageTiers;
    }

    public StorageTierBulkRep() {
    }

    public StorageTierBulkRep(List storageTiers) {
        this.storageTiers = storageTiers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy