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

com.emc.storageos.model.vpool.ObjectVirtualPoolParam 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 Object VirtualPool creation
 */
@XmlRootElement(name = "object_vpool_create")
public class ObjectVirtualPoolParam extends VirtualPoolCommonParam {

	Integer maxRetention;

    public ObjectVirtualPoolParam() {
    }
    
    /**
     * The maximum retention settings for the virtual pool.
     * 
     * @valid none
     */
    @XmlElement(name = "max_retention")
    public Integer getMaxRetention() {
        return maxRetention;
    }

    public void setMaxRetention(Integer maxRetention) {
        this.maxRetention = maxRetention;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy