
artoria.cache.support.config.RedisCacheConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.cache.support.config;
import java.util.concurrent.TimeUnit;
public class RedisCacheConfig {
private String name;
private String lockManager;
private Long timeToLive;
private TimeUnit timeToLiveUnit;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLockManager() {
return lockManager;
}
public void setLockManager(String lockManager) {
this.lockManager = lockManager;
}
public Long getTimeToLive() {
return timeToLive;
}
public void setTimeToLive(Long timeToLive) {
this.timeToLive = timeToLive;
}
public TimeUnit getTimeToLiveUnit() {
return timeToLiveUnit;
}
public void setTimeToLiveUnit(TimeUnit timeToLiveUnit) {
this.timeToLiveUnit = timeToLiveUnit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy