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

win.doyto.query.cache.DefaultCacheWrapper Maven / Gradle / Ivy

There is a newer version: 0.2.2.1-RELEASE
Show newest version
package win.doyto.query.cache;

import lombok.Getter;
import lombok.Setter;
import org.springframework.cache.Cache;
import org.springframework.cache.support.NoOpCache;

/**
 * DefaultCacheWrapper
 *
 * @author f0rb
 */
@Getter
@Setter
class DefaultCacheWrapper implements CacheWrapper {

    private Cache cache = new NoOpCache("noop");

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy