01: // PushCacheStore.java
02: // $Id: PushCacheStore.java,v 1.1 2001/10/03 15:00:46 ylafon Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2001.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http.cache.push;
07:
08: import org.w3c.www.protocol.http.cache.CacheStore;
09: import java.io.File;
10:
11: /**
12: * Trival subclass of CacheStore which simply provides access to
13: * getNewEntryFile for members of this package.
14: *
15: * If CacheStore.getNewEntryFile was public, this class would not be
16: * necessary.
17: *
18: * @author Paul Henshaw, The Fantastic Corporation, Paul.Henshaw@fantastic.com
19: * @version $Revision: 1.1 $
20: * $Id: PushCacheStore.java,v 1.1 2001/10/03 15:00:46 ylafon Exp $
21: */
22: class PushCacheStore extends CacheStore {
23:
24: /**
25: * Calls super.getNewEntryFile()
26: */
27: protected File getNewEntryFile() {
28: return (super.getNewEntryFile());
29: }
30: }
|