1 package com.tonbeller.tbutils.res;2 3 /**4 * @author av5 * @since 18.01.20056 */7 public interface PersistentResourceProvider extends ResourceProvider {8 /**9 * sets a key/value pair to the storage10 */11 public void store(String key, String value);12 /**13 * removes a key14 */15 public void remove(String key);16 /**17 * commits changes into the storage.18 */19 public void flush();20 }21