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