01: /*
02: * $Id: Handler.java,v 1.4 2005/11/30 11:27:27 ss150821 Exp $
03: * $Source: /m/portal/ps/srap/src/com/sun/portal/rproxy/https/Handler.java,v $
04: * $Log: Handler.java,v $
05: * Revision 1.4 2005/11/30 11:27:27 ss150821
06: * 6356996 - Srap Code base needs to save files in the unix file format and not windows
07: *
08: * Revision 1.3 2005/02/23 09:02:00 ss150821
09: * RFE 6223490 - SRA Should use JDK based logging
10: *
11: * Revision 1.2 2005/02/23 08:59:22 ss150821
12: * RFE 6223490 - SRA Should use JDK based logging
13: *
14: * Revision 1.1 2002/06/14 09:53:56 rt130506
15: * SRAP rebranding
16: *
17: * Revision 1.2 2002/06/11 16:02:08 bv131302
18: * new branded
19: *
20: * Revision 1.1 2002/05/28 09:38:19 mm132998
21: * Bug id - 4692062 , CRT - 1215 , Desc - Support for iDSAME in https mode.
22: *
23: *
24: */
25: /*
26: * @(#)Handler.java 1.1 01/02/05
27: *
28: * Copyright (c) 02/05/01 Sun Microsystems, Inc. All Rights Reserved.
29: */
30:
31: package com.sun.portal.rproxy.https;
32:
33: import java.io.IOException;
34: import java.net.URL;
35: import java.net.URLConnection;
36:
37: /**
38: * This is the URL protocol handler class for HTTPS. It's HTTP with the Secure
39: * Sockets Layer (SSL) between HTTP and TCP protcols.
40: *
41: */
42:
43: public class Handler extends sun.net.www.protocol.http.Handler {
44: protected URLConnection openConnection(URL u) throws IOException {
45:
46: return new HttpsURLConnection(u, this);
47: }
48:
49: }
|