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

com.emc.storageos.model.vpool.FileVirtualPoolParam 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.vpool;

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

/**
 * Parameter to File VirtualPool creation
 */
@XmlRootElement(name = "file_vpool_create")
public class FileVirtualPoolParam extends VirtualPoolCommonParam {

    private FileVirtualPoolProtectionParam protection;

    public FileVirtualPoolParam() {
    }

    public FileVirtualPoolParam(FileVirtualPoolProtectionParam protection) {
        super();
        this.protection = protection;
    }

    /**
     * The protection settings for the virtual pool.
     * 
     * @valid none
     */
    @XmlElement(name = "protection")
    public FileVirtualPoolProtectionParam getProtection() {
        return protection;
    }

    public void setProtection(FileVirtualPoolProtectionParam protection) {
        this.protection = protection;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy