01: /*
02: * $Id: JSSDebug.java,v 1.4 2005/11/30 11:27:27 ss150821 Exp $
03: * $Source: /m/portal/ps/srap/src/com/sun/portal/rproxy/https/JSSDebug.java,v $
04: * $Log: JSSDebug.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:01 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: * @(#)JSSDebug.java 1.2 00/02/02
27: *
28: * Copyright (c) 02/02/00 Sun Microsystems, Inc. All Rights Reserved.
29: */
30:
31: package com.sun.portal.rproxy.https;
32:
33: import com.sun.portal.util.Debug;
34:
35: public class JSSDebug {
36: public static Debug debug;
37:
38: static {
39: debug = new Debug("jss");
40: debug.setDebug();
41: }
42: }
|