use of net.sf.ehcache.config.DiskStoreConfiguration in project gocd by gocd.
the class GoCacheFactory method diskStore.
private DiskStoreConfiguration diskStore() {
DiskStoreConfiguration diskStore = new DiskStoreConfiguration();
diskStore.setPath(diskStorePath);
return diskStore;
}
Aggregations