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

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

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

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

/**
 * List of file systems. Used by file system ingest method to
 * build the list of unmanaged file systems that are now under
 * ViPR management.
 * 
 */
@XmlRootElement(name = "filesystems")
public class NamedFileSystemList {

    private List filesystems;

    public NamedFileSystemList() {
    }

    public NamedFileSystemList(List filesystems) {
        this.filesystems = filesystems;
    }

    /**
     * List of file systems.
     * 
     * @valid none
     */
    @XmlElement(name = "filesystem")
    public List getFilesystems() {
        if (filesystems == null) {
            filesystems = new ArrayList();
        }
        return filesystems;
    }

    public void setFilesystems(List filesystems) {
        this.filesystems = filesystems;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy