/* * Copyright (c) 2016 EMC Corporation * All Rights Reserved */ package com.emc.storageos.vnxe.models; import org.codehaus.jackson.map.annotate.JsonSerialize; @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL) public class FileSystemQuotaConfigParam extends ParamBase { private long gracePeriod; public long getGracePeriod() { return gracePeriod; } public void setGracePeriod(long gracePeriod) { this.gracePeriod = gracePeriod; } }