| PreparedStatementRemote.java |
/*
* JBoss, the OpenSource WebOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*
*/
package org.jboss.test.jca.interfaces;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* @author Scott.Stark@jboss.org
* @version $Revision: 1.1 $
*/
public interface PreparedStatementRemote
extends EJBObject
{
public long hashEntityTable()
throws RemoteException;
}
| PreparedStatementRemote.java |