Clover coverage report - JFox Service-Oriented Application Framework - 1.0-M2
Coverage timestamp: 星期四 十一月 25 2004 17:14:11 PST
file stats: LOC: 34   Methods: 0
NCLOC: 5   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
InterceptorChain.java - - - -
coverage
 1   
 /**
 2   
  * JFoxSOAF, Service-Oriented Application Framework
 3   
  * 
 4   
  * Copyright (C) www.huihoo.org
 5   
  * 
 6   
  * Distributable under GNU LGPL For more information, please visit:
 7   
  * http://www.huihoo.org/jfox/jfoxsoaf
 8   
  */
 9   
 
 10   
 package org.huihoo.jfox.soaf.container;
 11   
 
 12   
 import java.util.Collection;
 13   
 
 14   
 /**
 15   
  * An ordered collection of independent interceptors.
 16   
  * 
 17   
  * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
 18   
  * @version $Revision: 1.4 $ $Date: 2004/10/28 05:12:04 $
 19   
  * @version Revision: 1.0
 20   
  */
 21   
 
 22   
 public interface InterceptorChain {
 23   
 
 24   
     /**
 25   
      * Invoke intercetor stack.
 26   
      * 
 27   
      * @param interceptorColl
 28   
      * @param serviceEntryColl
 29   
      * @throws Throwable
 30   
      */
 31   
     public void processInterceptor(Collection interceptorColl,
 32   
             ServiceEntry serviceEntry) throws Throwable;
 33   
 
 34   
 }