User: osh     
  Date: 01/01/21 08:50:23

  Modified:    src/main/org/jboss/test/cts/interfaces
                        StatefulSessionHome.java StatelessSessionHome.java
  Log:
  Some more verifier warning cleanup.
  
  Revision  Changes    Path
  1.6       +3 -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.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- StatefulSessionHome.java  2001/01/16 03:10:36     1.5
  +++ StatefulSessionHome.java  2001/01/21 16:50:22     1.6
  @@ -14,8 +14,8 @@
   /**
    *
    *   @see <related>
  - *   @author $Author: peter $
  - *   @version $Revision: 1.5 $
  + *   @author $Author: osh $
  + *   @version $Revision: 1.6 $
    */
   
   public interface StatefulSessionHome
  @@ -30,7 +30,8 @@
       *
       */
   
  -   public StatefulSession create ();
  +   public StatefulSession create ()
  +      throws RemoteException, CreateException;
   }
   
   
  
  
  
  1.3       +3 -2      
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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StatelessSessionHome.java 2001/01/16 03:10:36     1.2
  +++ StatelessSessionHome.java 2001/01/21 16:50:22     1.3
  @@ -9,8 +9,8 @@
   /**
    *
    *   @see <related>
  - *   @author $Author: peter $
  - *   @version $Revision: 1.2 $
  + *   @author $Author: osh $
  + *   @version $Revision: 1.3 $
    */
   
   public interface StatelessSessionHome
  @@ -25,7 +25,8 @@
       *
       */
   
  -   public StatelessSession create ();
  +   public StatelessSession create ()
  +      throws RemoteException, CreateException;
   
      /* The following included will not deploy as per the
         EJB 1.1 spec: [6.8] "There can be no other create methods
  
  
  

Reply via email to