/* * @(#)JdbcEJB.java 1.00 2/6/2000 */ /* ***************************************************************************** Copyright 2000 by Erica Andrews (cylikon@hotmail.com). All rights reserved. ./ButchWhipAppeal/ ./IcedPinky/ NO portion of this software may be used in ANY way by anyone other than myself without my express written consent. If it is downloaded for testing, it must be deleted from your system within 24 hours. Any other use constitutes piracy and fraudulent misuse of this software, punishable in a court of law. Copyright 2000 by Erica Andrews. All rights reserved. ***************************************************************************** */ package cylikon.ejb2; import java.rmi.*; import javax.ejb.*; import java.util.*; import sun.jdbc.rowset.*; import javax.sql.*; /** * JdbcEJB interface. * @author LiL CJ * @version 1.00 02/06/2000 */ public interface JdbcEJB2 extends EJBObject,Remote { CachedRowSet rset () throws RemoteException; void ResultSetCleanUp() throws RemoteException; }