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

artoria.cache.support.config.RedisCacheConfig Maven / Gradle / Ivy

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