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

com.emc.storageos.model.vpool.FileVirtualPoolUpdateParam 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 update.
 */
@XmlRootElement(name = "file_vpool_update")
public class FileVirtualPoolUpdateParam extends VirtualPoolUpdateParam {

    private FileVirtualPoolProtectionParam protection;
    private Boolean retention;

    public FileVirtualPoolUpdateParam() {
    }

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

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

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

    @XmlElement(name = "long_term_retention")
    public Boolean getLongTermRetention() {
        return retention;
    }

    public void setLongTermRetention(Boolean retention) {
        this.retention = retention;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy