User: starksm 
  Date: 01/07/17 23:15:32

  Modified:    src/main/org/jboss/test/lock/interfaces Tag: Branch_2_4
                        EnterpriseEntity.java
  Log:
  Update the lock contention tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.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.2.1
  diff -u -r1.2 -r1.2.2.1
  --- EnterpriseEntity.java     2000/10/19 01:28:07     1.2
  +++ EnterpriseEntity.java     2001/07/18 06:15:31     1.2.2.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

Reply via email to