User: mnf999  
  Date: 01/12/18 21:20:47

  Modified:    src/main/org/jboss/ejb Interceptor.java
  Log:
  Interceptors now work with the generalized "Invocation", that is the whole point...
  
  Revision  Changes    Path
  1.9       +5 -3      jboss/src/main/org/jboss/ejb/Interceptor.java
  
  Index: Interceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/Interceptor.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Interceptor.java  2001/11/24 20:43:22     1.8
  +++ Interceptor.java  2001/12/19 05:20:47     1.9
  @@ -6,12 +6,14 @@
    */
   package org.jboss.ejb;
   
  +import org.jboss.invocation.Invocation;
   
  +
   /**
    * Provides the interface for all container interceptors.
    *      
    * @author <a href="mailto:[EMAIL PROTECTED]";>Rickard �berg</a>
  - * @version $Revision: 1.8 $
  + * @version $Revision: 1.9 $
    */
   public interface Interceptor
      extends ContainerPlugin
  @@ -38,7 +40,7 @@
       *
       * @throws Exception ???
       */
  -   Object invokeHome(MethodInvocation mi) throws Exception;
  +   Object invokeHome(Invocation mi) throws Exception;
   
      /**
       * ???
  @@ -48,6 +50,6 @@
       *
       * @throws Exception ???
       */
  -   Object invoke(MethodInvocation mi) throws Exception;
  +   Object invoke(Invocation mi) throws Exception;
   }
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to