1 package org.enhydra.shark.api.client.wfservice; 2 3 4 import org.enhydra.shark.api.client.wfmodel.*; 5 6 import org.enhydra.shark.api.client.wfbase.*; 7 import org.enhydra.shark.api.SharkTransaction; 8 9 17 public interface WfProcessMgrIterator extends BaseIterator { 18 WfProcessMgr get_next_object () throws BaseException; 19 WfProcessMgr get_next_object (SharkTransaction t) throws BaseException; 20 21 WfProcessMgr get_previous_object () throws BaseException; 22 WfProcessMgr get_previous_object (SharkTransaction t) throws BaseException; 23 24 WfProcessMgr[] get_next_n_sequence (int max_number) throws BaseException; 25 WfProcessMgr[] get_next_n_sequence (SharkTransaction t,int max_number) throws BaseException; 26 27 WfProcessMgr[] get_previous_n_sequence (int max_number) throws BaseException; 28 WfProcessMgr[] get_previous_n_sequence (SharkTransaction t,int max_number) throws BaseException; 29 } | Popular Tags |