Clover coverage report - JFox Service-Oriented Application Framework - 1.0-M2
Coverage timestamp: 星期四 十一月 25 2004 17:14:11 PST
file stats: LOC: 26   Methods: 0
NCLOC: 3   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
ServiceInterceptor.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   
 /**
 13   
  * <p>
 14   
  * Interface for all service interceptors.
 15   
  * </p>
 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 ServiceInterceptor {
 23   
 
 24   
     public void invoke(ServiceEntry serviceEntry) throws Throwable;
 25   
 
 26   
 }