1 package org.enhydra.shark.api.client.wfservice; 2 3 import org.enhydra.shark.api.SharkTransaction; 4 import org.enhydra.shark.api.client.wfbase.BaseException; 5 6 11 public interface LimitAdministration { 12 13 19 void connect (String userId); 20 21 26 void checkLimits () throws BaseException; 27 28 33 void checkLimits (SharkTransaction t) throws BaseException; 34 35 40 void checkLimits (String [] procIds) throws BaseException; 41 42 47 void checkLimits (SharkTransaction t,String [] procIds) throws BaseException; 48 49 54 void checkLimits (String procId) throws BaseException; 55 56 61 void checkLimits (SharkTransaction t,String procId) throws BaseException; 62 63 67 void checkProcessLimit (String procId) throws BaseException; 68 69 73 void checkProcessLimit (SharkTransaction t,String procId) throws BaseException; 74 75 79 void checkActivityLimit (String procId,String actId) throws BaseException; 80 81 85 void checkActivityLimit (SharkTransaction t,String procId,String actId) throws BaseException; 86 87 } 88 | Popular Tags |