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

com.emc.storageos.model.block.export.ITLBulkRep 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.export;

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

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

@XmlRootElement(name = "bulk_itls")
public class ITLBulkRep {

    private List exportList;

    public ITLBulkRep() {
    }

    public ITLBulkRep(List exportList) {
        this.exportList = exportList;
    }

    /**
     * A list of Initiator-Target-Lun Rest Response objects.
     * Each entry in the list represents one initiator - target connection to a volume.
     * 
     * @valid none
     */
    @XmlElement(name = "itl")
    public List getExportList() {
        if (exportList == null) {
            exportList = new ArrayList();
        }
        return exportList;
    }

    public void setExportList(List exportList) {
        this.exportList = exportList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy