com.emc.storageos.model.vpool.ObjectVirtualPoolParam Maven / Gradle / Ivy
/*
* 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