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

com.github.bootfastconfig.cache.Duration Maven / Gradle / Ivy

Go to download

Parent pom providing dependency and plugin management for applications built with Maven

The newest version!
package com.github.bootfastconfig.cache;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import java.util.concurrent.TimeUnit;

@AllArgsConstructor
@NoArgsConstructor
public class Duration {
    @Getter
    @Setter
    private long duration = 60;
    @Getter
    @Setter
    private TimeUnit unit;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy