1 2 3 package org.enhydra.shark.api.internal.caching; 4 5 import org.enhydra.shark.api.internal.working.*; 6 import org.enhydra.shark.api.RootException; 7 8 13 public interface ResourceCache extends ObjectCache { 14 15 23 public void add(String username, WfResourceInternal res) throws RootException; 24 25 31 public void remove(String username) throws RootException; 32 33 41 public WfResourceInternal get(String username) throws RootException; 42 } 43 44 | Popular Tags |