User: peter
Date: 01/01/15 19:10:37
Modified: src/main/org/jboss/test/cts/interfaces
StatefulSessionHome.java StatelessSessionHome.java
Added: src/main/org/jboss/test/cts/interfaces StatefulSession.java
StatelessSession.java
Log:
Added files back that were mistakenly deleted.
Revision Changes Path
1.5 +1 -2
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.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- StatefulSessionHome.java 2001/01/11 03:55:47 1.4
+++ StatefulSessionHome.java 2001/01/16 03:10:36 1.5
@@ -15,7 +15,7 @@
*
* @see <related>
* @author $Author: peter $
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
*/
public interface StatefulSessionHome
@@ -31,7 +31,6 @@
*/
public StatefulSession create ();
-
}
1.2 +3 -3
jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSessionHome.java
Index: StatelessSessionHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSessionHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StatelessSessionHome.java 2001/01/11 03:55:47 1.1
+++ StatelessSessionHome.java 2001/01/16 03:10:36 1.2
@@ -1,4 +1,3 @@
-
package org.jboss.test.cts.interfaces;
@@ -11,7 +10,7 @@
*
* @see <related>
* @author $Author: peter $
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface StatelessSessionHome
@@ -28,7 +27,7 @@
public StatelessSession create ();
- /* The following included will not deploy as per the
+ /* 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);
@@ -36,3 +35,4 @@
}
+/*------ Formatted by Jindent 3.23 Basic 1.0 --- http://www.jindent.de ------*/
1.6 +22 -24
jbosstest/src/main/org/jboss/test/cts/interfaces/StatefulSession.java
1.1
jbosstest/src/main/org/jboss/test/cts/interfaces/StatelessSession.java
Index: StatelessSession.java
===================================================================
package org.jboss.test.cts.interfaces;
import org.jboss.test.util.ejb.*;
import javax.ejb.*;
/**
* Interface StatelessSession
*
*
* @author
* @version %I%, %G%
*/
public interface StatelessSession
extends EJBObject
{
/**
* Method method1
*
*
* @param msg
*
* @return
*
* @throws java.rmi.RemoteException
*
*/
public String method1 (String msg)
throws java.rmi.RemoteException;
/**
* Method loopbackTest
*
*
* @throws java.rmi.RemoteException
*
*/
public void loopbackTest ()
throws java.rmi.RemoteException;
/**
* Method loopbackTest
*
*
* @param obj
*
* @throws java.rmi.RemoteException
*
*/
public void loopbackTest (EJBObject obj)
throws java.rmi.RemoteException;
}
/*------ Formatted by Jindent 3.23 Basic 1.0 --- http://www.jindent.de ------*/