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

com.emc.storageos.model.project.VirtualNasParam 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.project;

import java.util.Set;

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

/**
 * List of Virtual NAS parameters for associate/dissociate to a project.
 * 
 * @author prasaa9
 * 
 */

@XmlRootElement(name = "vnas_servers")
public class VirtualNasParam {

    /**
     * Returned list of Virtual NAS Servers.
     * 
     * @valid none
     */
    private Set vnasServers;

    public VirtualNasParam() {
    }

    public VirtualNasParam(Set vnasServers) {
        this.vnasServers = vnasServers;
    }

    /**
     * List of Virtual NAS. A Virtual NAS represents a
     * virtual NAS server of a storage device.
     * 
     * @valid none
     */
    @XmlElement(name = "vnas_server")
    public Set getVnasServers() {
        return vnasServers;
    }

    /**
     * @param vnasServers the vnasServers to set
     */
    public void setVnasServers(Set vnasServers) {
        this.vnasServers = vnasServers;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy