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

com.emc.storageos.model.file.UnManagedFileBulkRep 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.file;

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;

/**
 * Response to a bulk query for the list of unmanaged file systems.
 * 
 */
@XmlRootElement(name = "bulk-unmanaged-filesystems")
public class UnManagedFileBulkRep extends BulkRestRep {
    private List unManagedFileSystems;

    /**
     * List of unmanaged file systems. UnManaged FileSystems are FileSystems that
     * are present within ViPR, but are not under ViPR management. ViPR
     * provides an ingest capability that enables users to bring the unmanaged
     * file systems under ViPR management.
     * 
     * @valid none
     */
    @XmlElement(name = "unmanaged-filesystems")
    public List getUnManagedFileSystems() {
        if (unManagedFileSystems == null) {
            unManagedFileSystems = new ArrayList();
        }
        return unManagedFileSystems;
    }

    public void setUnManagedFileSystems(List unManagedFileSystems) {
        this.unManagedFileSystems = unManagedFileSystems;
    }

    public UnManagedFileBulkRep() {
    }

    public UnManagedFileBulkRep(List unManagedFileSystems) {
        this.unManagedFileSystems = unManagedFileSystems;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy