/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/ |
H A D | DoNothingActionReporter.java | 55 public void writeReport(OutputStream os) throws IOException { argument
|
H A D | HTMLActionReporter.java | 66 public void writeReport(OutputStream os) throws IOException { argument 67 PrintWriter writer = new PrintWriter(os);
|
H A D | JsonActionReporter.java | 76 public void writeReport(OutputStream os) throws IOException { argument 77 PrintWriter writer = new PrintWriter(os);
|
H A D | XMLContentActionReporter.java | 87 public void writeReport(OutputStream os) { argument 95 writeXML(d, os); 177 * @param os the output stream 180 private void writeXML(Document doc, OutputStream os) argument 184 Result result = new StreamResult(os);
|
H A D | PropsFileActionReporter.java | 72 public void writeReport(OutputStream os) throws IOException { argument 84 out.write(os);
|
H A D | XMLActionReporter.java | 93 public void writeReport(OutputStream os) { argument 100 writeXML(d, os); 202 private void writeXML(Document doc, OutputStream os) throws TransformerConfigurationException, TransformerException { argument 205 Result result = new StreamResult(os);
|
H A D | PlainTextActionReporter.java | 64 public void writeReport(OutputStream os) throws IOException { argument 67 writer = new PrintWriter(os);
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/utils/xml/ |
H A D | RestActionReporter.java | 59 public void writeReport(OutputStream os) throws IOException { argument
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/ |
H A D | ArchivistUtils.java | 60 public static void copy(InputStream is, OutputStream os) throws IOException { argument 61 copyWithoutClose(is, os); 63 os.close(); 70 public static void copyWithoutClose(InputStream is, OutputStream os) throws IOException { argument 81 os.write(buf, 0, len); 84 os.flush();
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/io/ |
H A D | J2EEObjectStreamFactoryImpl.java | 71 final OutputStream os, 79 oos = new EJBObjectOutputStream(os, replaceObject); 87 os, replaceObject); 70 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
|
H A D | JavaEEIOUtilsImpl.java | 62 public ObjectOutputStream createObjectOutputStream(OutputStream os, boolean replaceObject) throws IOException { argument 63 return IOUtils.createObjectOutputStream(os, replaceObject);
|
H A D | IOUtils.java | 79 final OutputStream os, final boolean replaceObject) 82 return _streamFactory.createObjectOutputStream(os, replaceObject); 78 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/io/ |
H A D | J2EEObjectStreamFactory.java | 68 public ObjectOutputStream createObjectOutputStream(OutputStream os, argument
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/ |
H A D | IOTools.java | 109 public static void flow( InputStream is, OutputStream os, byte[] buf ) argument 113 os.write(buf, 0, numRead); 120 public static void flow( InputStream is, OutputStream os ) 123 flow( is, os, buf );
|
/glassfish-3.1.2/build/glassfish-obr-builder/src/main/java/org/glassfish/obrbuilder/xmlentities/ |
H A D | ObrXmlReaderWriter.java | 108 * @param os target stream to write to 111 public void write(Repository repository, OutputStream os) throws IOException { argument 113 getMarshaller(repository.getClass()).marshal(repository, os); 126 OutputStream os = new BufferedOutputStream(new FileOutputStream(out)); 128 write(repository, os); 131 os.close();
|
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/spi/util/ |
H A D | JavaEEIOUtils.java | 65 public ObjectOutputStream createObjectOutputStream(OutputStream os, boolean replaceObject) argument
|
H A D | JavaEEObjectStreamFactory.java | 88 final OutputStream os, 100 oos = new JavaEEObjectOutputStream(os, replaceObject, handlers); 107 return new JavaEEObjectOutputStream(os, replaceObject, handlers); 87 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
|
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/ |
H A D | Rejar.java | 152 protected void copy(JarFile in, JarEntry je, OutputStream os) throws IOException { argument 153 copy(in, je, Channels.newChannel(os));
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/commands/ |
H A D | SummaryReporter.java | 66 final OperatingSystemMXBean os = ManagementFactory.newPlatformMXBeanProxy(mbsc, 68 sb.append(getOSInfo(os)); 78 private String getOSInfo(final OperatingSystemMXBean os) { argument 80 sb.append(sm.getString("os.info")); 81 sb.append(sm.getString("os.name", os.getName())); 82 sb.append(sm.getString("os.arch", os.getArch(), os.getVersion())); 83 sb.append(sm.getString("os 109 getSystemLoad(OperatingSystemMXBean os) argument [all...] |
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ |
H A D | J2EEDocumentBuilder.java | 138 public static void write (Descriptor descriptor, final RootXMLNode node, final OutputStream os) throws Exception { argument 139 Result output = new StreamResult(os);
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/ |
H A D | Payload.java | 329 * @param os OutputStream to receive the formatted payload 332 public void writeTo(final OutputStream os) throws IOException; argument 403 * @param os target OutputStream to receive the content of the Part 406 public void copy(final OutputStream os) throws IOException; argument
|
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/config/ |
H A D | ConfigBeanArchive.java | 85 public void closeEntry(ReadableArchive os) throws IOException { argument 97 public void closeEntry(OutputStream os) throws IOException { argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/ |
H A D | DeploymentDescriptorFile.java | 373 * @param os the output stream 375 public void write(T descriptor, OutputStream os) throws IOException { argument 377 J2EEDocumentBuilder.write(descriptor, getRootXMLNode(descriptor), os);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/sfsb/store/ |
H A D | SFSBBeanState.java | 179 public void _storeable_writeState(OutputStream os) throws IOException { argument 180 ObjectOutputStream oos = new ObjectOutputStream(os);
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/ |
H A D | ActionReport.java | 82 public abstract void writeReport(OutputStream os) throws IOException; argument
|