Clover coverage report - Cactus 1.4 for J2EE API 13
Coverage timestamp: Sun Aug 25 2002 18:02:10 BST
file stats: LOC: 26   Methods: 0
NCLOC: 5   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ConnectionHelper.java - - - -
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.client;
 3   
 import org.apache.cactus.WebRequest;
 4   
 import java.net.HttpURLConnection;
 5   
 
 6   
 /** 
 7   
  * Helper class to open an HTTP connection to the server redirector and pass 
 8   
  * to it HTTP parameters, Cookies and HTTP headers. It enables different 
 9   
  * possible implementations of an HTTP connection (ex: using the JDK 
 10   
  * <code>HttpURLConnection</code> or using Jakarta HttpClient). 
 11   
  * 
 12   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 13   
  * 
 14   
  * @version $Id: ConnectionHelper.java,v 1.2 2002/07/23 22:35:36 vmassol Exp $ 
 15   
  */
 16   
 public interface ConnectionHelper {
 17   
   /** 
 18   
        * Connects to the Cactus Redirector using HTTP. 
 19   
        * 
 20   
        * @param theRequest the request containing all data to pass to the 
 21   
        *        server redirector. 
 22   
        * @return the HTTP Connection used to connect to the redirector. 
 23   
        * @exception Throwable if an unexpected error occured 
 24   
        */
 25   
   HttpURLConnection connect(WebRequest theRequest) throws Throwable;
 26   
 }