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