User: user57  
  Date: 01/07/10 22:52:08

  Modified:    src/main/org/jboss/test/lock/interfaces
                        EnterpriseEntity.java
  Log:
   o updated lock test to excersise commit-option a, b (c & d but those are
     not enabled at the moment).
   o abstracted the actuall test outside of Worker, into Task so it is easier
     to add new lock tests
   o the test will also do a single bean, bean-to-bean
  
  Revision  Changes    Path
  1.3       +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.3
  diff -u -r1.2 -r1.3
  --- EnterpriseEntity.java     2000/10/19 01:28:07     1.2
  +++ EnterpriseEntity.java     2001/07/11 05:52:08     1.3
  @@ -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

Reply via email to