01: /*
02: * $Id: ReaderWriterLock.java,v 1.4 2005/11/30 11:27:28 ss150821 Exp $
03: * $Source: /m/portal/ps/srap/src/com/sun/portal/rproxy/https/ReaderWriterLock.java,v $
04: * $Log: ReaderWriterLock.java,v $
05: * Revision 1.4 2005/11/30 11:27:28 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:02 ss150821
09: * RFE 6223490 - SRA Should use JDK based logging
10: *
11: * Revision 1.2 2005/02/23 08:59:23 ss150821
12: * RFE 6223490 - SRA Should use JDK based logging
13: *
14: * Revision 1.1 2002/06/14 09:53:57 rt130506
15: * SRAP rebranding
16: *
17: * Revision 1.2 2002/06/11 16:02:09 bv131302
18: * new branded
19: *
20: * Revision 1.1 2002/05/28 09:38:18 mm132998
21: * Bug id - 4692062 , CRT - 1215 , Desc - Support for iDSAME in https mode.
22: *
23: *
24: */
25: // @(#)ReaderWriterLock.java 1.4 "@(#)ReaderWriterLock.java 1.4 99/09/23 Sun Microsystems"
26: package com.sun.portal.rproxy.https;
27:
28: public class ReaderWriterLock {
29:
30: protected boolean rwDone = false;
31:
32: synchronized public void notifyFinished() {
33: notify();
34: }
35:
36: synchronized public void notifyFinished(ReaderWriter obj) {
37: }
38: }
|