User: user57  
  Date: 01/07/09 21:46:30

  Modified:    src/main/org/jboss/ejb Interceptor.java
  Log:
   o added some javadocs
  
  Revision  Changes    Path
  1.6       +34 -15    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.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Interceptor.java  2001/06/18 20:01:21     1.5
  +++ Interceptor.java  2001/07/10 04:46:30     1.6
  @@ -10,27 +10,46 @@
   import java.security.Principal;
   
   /**
  - *   <description> 
  + * Provides the interface for all container interceptors.
    *      
  - *   @see <related>
  - *   @author <a href="mailto:[EMAIL PROTECTED]";>Rickard �berg</a>
  - *   @version $Revision: 1.5 $
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Rickard �berg</a>
  + * @version $Revision: 1.6 $
    */
   public interface Interceptor
      extends ContainerPlugin
   {
  -   // Constants -----------------------------------------------------
  -    
  -   // Static --------------------------------------------------------
  +   /**
  +    * Set the next interceptor in the chain.
  +    *
  +    * @param interceptor        The next interceptor in the chain.
  +    */
  +   void setNext(Interceptor interceptor);
   
  -   // Public --------------------------------------------------------
  -   public void setNext(Interceptor interceptor);
  -   public Interceptor getNext();
  +   /**
  +    * Get the next interceptor in the chain.
  +    *
  +    * @return   The next interceptor in the chain.
  +    */
  +   Interceptor getNext();
      
  -   public Object invokeHome(MethodInvocation mi)
  -      throws Exception;
  -      
  -   public Object invoke(MethodInvocation mi)
  -      throws Exception;
  +   /**
  +    * ???
  +    *
  +    * @param mi         ???
  +    * @return           ???
  +    *
  +    * @throws Exception ???
  +    */
  +   Object invokeHome(MethodInvocation mi) throws Exception;
  +
  +   /**
  +    * ???
  +    *
  +    * @param mi         ???
  +    * @return           ???
  +    *
  +    * @throws Exception ???
  +    */
  +   Object invoke(MethodInvocation mi) throws Exception;
   }
   
  
  
  

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

Reply via email to