User: starksm
Date: 01/07/17 20:26:27
Modified: src/main/org/jboss/test/lock/interfaces Tag: Branch_2_2
EnterpriseEntity.java
Log:
Update the lock contention tests
Revision Changes Path
No revision
No revision
1.2.4.1 +9 -7
jbosstest/src/main/org/jboss/test/lock/interfaces/EnterpriseEntity.java
Index: EnterpriseEntity.java
===================================================================
RCS file:
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/lock/interfaces/EnterpriseEntity.java,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -u -r1.2 -r1.2.4.1
--- EnterpriseEntity.java 2000/10/19 01:28:07 1.2
+++ EnterpriseEntity.java 2001/07/18 03:26:27 1.2.4.1
@@ -1,16 +1,18 @@
package org.jboss.test.lock.interfaces;
-
import javax.ejb.*;
import java.rmi.*;
+public interface EnterpriseEntity
+ extends EJBObject
+{
+ void setField(String value) throws RemoteException;
+
+ void setNextEntity(String nextBeanName) throws RemoteException;
+ void setAndCopyField(String value) throws RemoteException;
-public interface EnterpriseEntity extends EJBObject {
-
- public void setField(String value) throws RemoteException;
- public void setNextEntity(String nextBeanName) throws RemoteException;
- public void setAndCopyField(String value) throws RemoteException;
- public String getField() throws RemoteException;
+ String getField() throws RemoteException;
+ void sleep(long time) throws InterruptedException, RemoteException;
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development