/**
  * Sets the value.
  *
  * @param type the type
  * @param key the key
  * @param value the value
  */
 public void setValue(CacheType<String, String> type, String key, String value) {
   cacheCoordinator.getCache(type).put(key, value);
 }
 /**
  * Gets the value.
  *
  * @param type the type
  * @param key the key
  * @return the value
  */
 public String getValue(CacheType<String, String> type, String key) {
   return cacheCoordinator.getCache(type).get(key);
 }