User: peter
Date: 01/01/24 18:45:38
Modified: src/main/org/jboss/test/cts/interfaces StatefulSession.java
StatelessSession.java
Added: src/main/org/jboss/test/cts/interfaces CtsBmp.java
CtsBmpHome.java
Log:
Added rudimentary BMP tests.
Revision Changes Path
1.7 +2 -0
jbosstest/src/main/org/jboss/test/cts/interfaces/StatefulSession.java
Index: StatefulSession.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/cts/interfaces/StatefulSession.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- StatefulSession.java 2001/01/16 03:10:36 1.6
+++ StatefulSession.java 2001/01/25 02:45:36 1.7
@@ -1,5 +1,7 @@
package org.jboss.test.cts.interfaces;
+
+
import org.jboss.test.util.ejb.*;
import javax.ejb.*;
1.2 +3 -0
jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSession.java
Index: StatelessSession.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSession.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StatelessSession.java 2001/01/16 03:10:36 1.1
+++ StatelessSession.java 2001/01/25 02:45:37 1.2
@@ -1,7 +1,10 @@
package org.jboss.test.cts.interfaces;
+
+
import org.jboss.test.util.ejb.*;
import javax.ejb.*;
+
/**
* Interface StatelessSession
1.1 jbosstest/src/main/org/jboss/test/cts/interfaces/CtsBmp.java
Index: CtsBmp.java
===================================================================
package org.jboss.test.cts.interfaces;
import java.rmi.RemoteException;
import javax.ejb.*;
/**
* Interface CtsBmp
*
*
* @author
* @version %I%, %G%
*/
public interface CtsBmp
extends EJBObject
{
/**
* Method setPersonsName
*
*
* @param personsName
*
* @throws RemoteException
*
*/
public void setPersonsName (String personsName)
throws RemoteException;
/**
* Method getPersonsName
*
*
* @return
*
* @throws RemoteException
*
*/
public String getPersonsName ()
throws RemoteException;
}
/*------ Formatted by Jindent 3.23 Basic 1.0 --- http://www.jindent.de ------*/
1.1 jbosstest/src/main/org/jboss/test/cts/interfaces/CtsBmpHome.java
Index: CtsBmpHome.java
===================================================================
package org.jboss.test.cts.interfaces;
import org.jboss.test.cts.keys.*;
import java.rmi.RemoteException;
import java.util.Collection;
import javax.ejb.*;
/**
* Interface CtsBmpHome
*
*
* @author
* @version %I%, %G%
*/
public interface CtsBmpHome
extends EJBHome
{
/**
* Method create
*
*
* @param pk
* @param personsName
*
* @return
*
* @throws CreateException
* @throws DuplicateKeyException
* @throws EJBException
* @throws RemoteException
*
*/
public CtsBmp create (AccountPK pk, String personsName)
throws CreateException, DuplicateKeyException, EJBException,
RemoteException;
/**
* Method findByPrimaryKey
*
*
* @param pk
*
* @return
*
* @throws EJBException
* @throws FinderException
* @throws RemoteException
*
*/
public CtsBmp findByPrimaryKey (AccountPK pk)
throws FinderException, EJBException, RemoteException;
/**
* Method findAll
*
*
* @return
*
* @throws EJBException
* @throws FinderException
* @throws RemoteException
*
*/
public Collection findAll ()
throws EJBException, FinderException, RemoteException;
}
/*------ Formatted by Jindent 3.23 Basic 1.0 --- http://www.jindent.de ------*/