01: /**
02: * $Id: ConnectionHandler.java,v 1.3 2004/01/07 23:55:02 mjain Exp $
03: * Copyright 2003 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.wsrp.consumer.resourceproxy;
14:
15: import java.io.IOException;
16: import java.net.URLConnection;
17:
18: /**
19: * Created by IntelliJ IDEA.
20: * User: tucu
21: * Date: Oct 30, 2003
22: * Time: 3:19:10 PM
23: * To change this template use Options | File Templates.
24: */
25: public interface ConnectionHandler {
26:
27: public void preConnection(URLConnection conn) throws IOException;
28:
29: public void postConnection(URLConnection conn) throws IOException;
30:
31: }
|