Searched defs:jos (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DRejar.java69 JarOutputStream jos = new JarOutputStream(fos, getManifest());
70 processDirectory(jos, modules, names, metadata);
76 processDirectory(jos, directory, names, metadata);
81 copy(e.getValue().toByteArray(), e.getKey(), jos);
83 jos.flush();
84 jos.close();
94 protected void processDirectory(JarOutputStream jos, File directory, Set<String> names, Map<String, ByteArrayOutputStream> metadata ) throws IOException { argument
126 copy(in, je, jos);
142 protected void copy(JarFile in, JarEntry je, JarOutputStream jos) throws IOException { argument
144 jos
169 copy(byte[] bytes, String name, JarOutputStream jos) argument
[all...]
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deployment/deploy/shared/
H A DOutputJarArchive.java73 protected ZipOutputStream jos = null; field in class:OutputJarArchive
93 if (jos != null) {
94 jos.flush();
95 jos.finish();
96 jos.close();
97 jos = null;
119 jos = new ZipOutputStream(bos);
164 ZipOutputStream jos = new ZipOutputStream(os);
171 ja.jos = jos;
[all...]
/glassfish-3.1.2/common/scattered-archive-api/src/main/java/org/glassfish/embeddable/archive/
H A DAssembler.java91 JarOutputStream jos = new JarOutputStream(new FileOutputStream(ear));
93 tranferFile(metadatas.get(key), jos, key, false);
101 tranferFile(archive, jos, archiveName, false);
103 jos.close();
113 JarOutputStream jos = new JarOutputStream(new FileOutputStream(archive));
115 transferDir(rootDirectory, jos, "");
117 tranferFile(metadatas.get(key), jos, key, false);
121 transferDir(classpath, jos, "WEB-INF/classes/");
123 tranferFile(classpath, jos, "WEB-INF/lib/" + classpath.getName(), false);
126 jos
193 transferDir(File dir, JarOutputStream jos, String entryNamePrefix) argument
198 transferDir(File basedir, File dir, JarOutputStream jos, String entryNamePrefix) argument
214 tranferFile(File file, JarOutputStream jos, String entryName, boolean explodeFile) argument
223 transferFile(File file, JarOutputStream jos, String entryName) argument
238 tranferEntries(File file, JarOutputStream jos) argument
259 transferContents(InputStream fin, JarOutputStream jos) argument
[all...]

Completed in 13 milliseconds