1 /*2 * Generated by XDoclet - Do not edit!3 */4 package org.bsf.remoteIterator.server;5 6 /**7 * Remote interface for RemoteIterator.8 */9 public interface RemoteIterator10 extends javax.ejb.EJBObject 11 {12 13 public java.util.List getColumnMetaData( )14 throws java.rmi.RemoteException ;15 16 public org.bsf.remoteIterator.common.RemoteIteratorResultTable absolute( int p_position )17 throws java.rmi.RemoteException ;18 19 public org.bsf.remoteIterator.common.RemoteIteratorResultTable absolute( int p_position,int p_blockSize )20 throws java.rmi.RemoteException ;21 22 public org.bsf.remoteIterator.common.RemoteIteratorResultTable previous( )23 throws java.rmi.RemoteException ;24 25 public org.bsf.remoteIterator.common.RemoteIteratorResultTable previous( int p_blockSize )26 throws java.rmi.RemoteException ;27 28 public org.bsf.remoteIterator.common.RemoteIteratorResultTable next( )29 throws java.rmi.RemoteException ;30 31 public org.bsf.remoteIterator.common.RemoteIteratorResultTable next( int p_blockSize )32 throws java.rmi.RemoteException ;33 34 public java.lang.Long getRowCount( )35 throws java.rmi.RemoteException ;36 37 /**38 * Sets the default block size to be used for this RemoteIteratorBean.39 */40 public void setDefaultBlockSize( java.lang.Integer p_defaultBlockSize )41 throws java.rmi.RemoteException ;42 43 }44