/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 *
 */
package org.jboss.test.cmp2.optimisticlock.bug1006723.testsession;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface TestSessionRemote extends EJBObject{

    public Long setup() throws Exception, RemoteException;

    public void test(Long entityAOID) throws Exception, RemoteException;

}