private CacheDecorator() {
// OK, Don't allow create a instance.
}
public static void addToCache(final String key, final String value){
final CacheValue cacheValue = new CacheValue();
cacheValue.setKey(key);
cacheValue.setValue(value);
// Clearing cache when it is full
if(cache.size() == 60)
cache.clear();