1 package org.enhydra.shark.api.internal.transaction; 2 3 import org.enhydra.shark.api.RootException; 4 import org.enhydra.shark.api.SharkTransaction; 5 import org.enhydra.shark.api.internal.working.WfProcessInternal; 6 import org.enhydra.shark.api.internal.working.WfResourceInternal; 7 8 16 public interface SharkInternalTransaction extends SharkTransaction { 17 18 public void addToTransaction (String procId,WfProcessInternal proc) throws RootException; 19 20 public void addToTransaction (String resUname,WfResourceInternal res) throws RootException; 21 22 public void removeProcess (String procId) throws RootException; 23 24 public void removeResource (String resUname) throws RootException; 25 26 public WfProcessInternal getProcess (String procId) throws RootException; 27 28 public WfResourceInternal getResource (String resUname) throws RootException; 29 30 } 31 32 | Popular Tags |