User: peter
Date: 01/01/10 19:55:48
Modified: src/main/org/jboss/test/cts/interfaces
StatefulSessionHome.java
Added: src/main/org/jboss/test/cts/interfaces
StatelessSessionHome.java
Removed: src/main/org/jboss/test/cts/interfaces StatefulSession.java
Log:
Fixed the getCallerPrincipal( ) problems.
Addes some rudimentary tests for stateless session beans.
Began some work on UserTransaction tests.
Revision Changes Path
1.4 +2 -3
jbosstest/src/main/org/jboss/test/cts/interfaces/StatefulSessionHome.java
Index: StatefulSessionHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/cts/interfaces/StatefulSessionHome.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- StatefulSessionHome.java 2000/12/21 04:42:42 1.3
+++ StatefulSessionHome.java 2001/01/11 03:55:47 1.4
@@ -15,15 +15,13 @@
*
* @see <related>
* @author $Author: peter $
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public interface StatefulSessionHome
extends EJBHome
{
- // Constants -----------------------------------------------------
-
/**
* Method create
*
@@ -33,6 +31,7 @@
*/
public StatefulSession create ();
+
}
1.1
jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSessionHome.java
Index: StatelessSessionHome.java
===================================================================
package org.jboss.test.cts.interfaces;
import java.rmi.*;
import javax.ejb.*;
/**
*
* @see <related>
* @author $Author: peter $
* @version $Revision: 1.1 $
*/
public interface StatelessSessionHome
extends EJBHome
{
/**
* Method create
*
*
* @return
*
*/
public StatelessSession create ();
/* The following included will not deploy as per the
EJB 1.1 spec: [6.8] "There can be no other create methods
in the home interface.
public StatelessSession create( String aString);
*/
}