01: /*
02: * PropertyLocation.java
03: *
04: * Created on October 10, 2001, 12:08 PM
05: */
06:
07: package com.sun.portal.desktop.deployment;
08:
09: import java.io.File;
10: import java.io.FileOutputStream;
11: import java.io.OutputStream;
12:
13: import java.util.jar.JarOutputStream;
14:
15: /**
16: * ParOutrputStream extends JarOutputStream, and is currently mostly a placeholder,
17: * which provides little extra functionality.
18: *
19: * @author yabob
20: * @version
21: */
22: public class ParOutputStream extends JarOutputStream {
23:
24: public ParOutputStream(String path, ParManifest man)
25: throws Exception {
26: super (new FileOutputStream(new File(path)), man);
27: }
28:
29: public ParOutputStream(OutputStream out, ParManifest man)
30: throws Exception {
31: super(out, man);
32: }
33:
34: }
|