lodsve.cache.properties.EhcacheCache Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.cache.properties;
/**
* Ehcache Cache.
*
* @author sunhao([email protected])
* @date 2018-4-25-0025 11:49
*/
public class EhcacheCache {
private String name;
private long maxElementsInMemory = 10000;
private boolean eternal = false;
private long timeToIdleSeconds = 300;
private long timeToLiveSeconds = 600;
private boolean overflowToDisk = true;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public long getMaxElementsInMemory() {
return maxElementsInMemory;
}
public void setMaxElementsInMemory(long maxElementsInMemory) {
this.maxElementsInMemory = maxElementsInMemory;
}
public boolean getEternal() {
return eternal;
}
public void setEternal(boolean eternal) {
this.eternal = eternal;
}
public long getTimeToIdleSeconds() {
return timeToIdleSeconds;
}
public void setTimeToIdleSeconds(long timeToIdleSeconds) {
this.timeToIdleSeconds = timeToIdleSeconds;
}
public long getTimeToLiveSeconds() {
return timeToLiveSeconds;
}
public void setTimeToLiveSeconds(long timeToLiveSeconds) {
this.timeToLiveSeconds = timeToLiveSeconds;
}
public boolean getOverflowToDisk() {
return overflowToDisk;
}
public void setOverflowToDisk(boolean overflowToDisk) {
this.overflowToDisk = overflowToDisk;
}
}