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 19 public interface WfEventAuditIterator extends BaseIterator { 20 WfEventAudit get_next_object () throws BaseException; 21 WfEventAudit get_next_object (SharkTransaction t) throws BaseException; 22 23 WfEventAudit get_previous_object () throws BaseException; 24 WfEventAudit get_previous_object (SharkTransaction t) throws BaseException; 25 26 WfEventAudit[] get_next_n_sequence (int max_number) throws BaseException; 27 WfEventAudit[] get_next_n_sequence (SharkTransaction t,int max_number) throws BaseException; 28 29 WfEventAudit[] get_previous_n_sequence (int max_number) throws BaseException; 30 WfEventAudit[] get_previous_n_sequence (SharkTransaction t,int max_number) throws BaseException; 31 } | Popular Tags |