Searched defs:in (Results 1 - 25 of 80) sorted by relevance

1234

/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DNonOSGiObjectInputOutputStreamFactoryImpl.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
51 public ObjectInputStream createObjectInputStream(InputStream in) argument
55 return new ObjectInputStreamWithLoader(in, loader);
64 public Class<?> resolveClass(ObjectInputStream in, ObjectStreamClass desc) argument
H A DObjectInputOutputStreamFactory.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
50 ObjectInputStream createObjectInputStream(InputStream in) throws IOException; argument
53 public Class<?> resolveClass(ObjectInputStream in, ObjectStreamClass desc) argument
H A DObjectInputStreamWithLoader.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
64 public ObjectInputStreamWithLoader(InputStream in, ClassLoader loader) argument
67 super(in);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/
H A DDescriptorArchivist.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
78 public void write(Application application, ReadableArchive in, argument
83 write((BundleDescriptor)aModule.getDescriptor(), moduleArchivist, in, out);
117 moduleArchivist.copyAnEntry(in, out, ddPath);
120 moduleArchivist.copyAnEntry(in, out, ddPath);
133 ReadableArchive moduleArchive2 = in.getSubArchive(aModule.getArchiveUri());
146 archivist.copyStandardDeploymentDescriptors(in, ou
158 write(BundleDescriptor bundle, ReadableArchive in, WritableArchive out) argument
172 write(BundleDescriptor bundle, Archivist archivist, ReadableArchive in, WritableArchive out) argument
[all...]
/glassfish-3.1.2/tests/quicklook/admincli/src/test/admincli/
H A DRestartDomainTests.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
52 private BufferedReader in = null; field in class:RestartDomainTests
73 in = new BufferedReader(new FileReader(fileName));
78 if(in != null) {
82 while (( line = in.readLine() ) != null ) {
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/
H A DWorkerDummy.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
47 * you may not use this file except in compliance with the License.
52 * Unless required by applicable law or agreed to in writing, software
94 public int invoke( Msg in, MsgContext ep ) argument
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DPager.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
56 private BufferedReader in; field in class:Pager
69 * @param lines the number of lines in a page. A number less
71 * @param in the source of the copy operation
76 Pager(int lines, Reader in, Writer out) throws IOException { argument
77 this.in = new BufferedReader(in);
[all...]
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/internal/
H A DShifter.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
68 public Shifter(Object[] in) { argument
69 if (in == null)
71 this.args = new Object[in.length];
72 System.arraycopy(in, 0, args, 0, in.length);
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/internal/
H A DShifter.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
68 public Shifter(Object[] in) { argument
69 if (in == null)
71 this.args = new Object[in.length];
72 System.arraycopy(in, 0, args, 0, in.length);
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DFormReader.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
75 InputStream in) throws IOException {
76 String formData = readAsString(in);
94 public final String readAsString(InputStream in) throws IOException { argument
95 Reader reader = new InputStreamReader(in);
73 readFrom(Class<HashMap<String, String>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DJsonHashMapProvider.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
73 InputStream in) throws IOException {
79 obj = new JSONObject(inputStreamAsString(in));
101 // JsonInputObject jsonObject = new JsonInputObject(in);
71 readFrom(Class<HashMap<String, String>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DJsonParameterMapProvider.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
74 InputStream in) throws IOException {
79 obj = new JSONObject(inputStreamAsString(in));
72 readFrom(Class<ParameterMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DJsonPropertyListReader.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
76 InputStream in) throws IOException {
79 BufferedReader reader = new BufferedReader(new InputStreamReader(in));
74 readFrom(Class<List<Map<String, String>>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DParameterMapFormReader.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
75 InputStream in) throws IOException {
76 String formData = readAsString(in);
93 public final String readAsString(InputStream in) throws IOException { argument
94 Reader reader = new InputStreamReader(in);
73 readFrom(Class<ParameterMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DXmlHashMapProvider.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
71 InputStream in) throws IOException {
73 XmlInputObject xmlObject = new XmlInputObject(in);
69 readFrom(Class<HashMap<String, String>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
H A DXmlPropertyListReader.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
76 InputStream in) throws IOException {
79 BufferedReader reader = new BufferedReader(new InputStreamReader(in));
74 readFrom(Class<List<Map<String, String>>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> headers, InputStream in) argument
/glassfish-3.1.2/build/maven-glassfishbuild-plugin/src/main/java/com/sun/enterprise/build/
H A DUnpack200Mojo.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
163 private FileType getMagic(File in) throws IOException { argument
165 DataInputStream is = new DataInputStream(new FileInputStream(in));
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/process/
H A DProcessStreamDrainerWorker.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
50 ProcessStreamDrainerWorker(InputStream in, PrintStream Redirect, boolean save) argument
52 if(in == null)
55 reader = new BufferedInputStream(in);
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/xml/
H A DProbeProviderStaxParser.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
43 * and open the template in the editor.
72 public ProbeProviderStaxParser(InputStream in) throws XMLStreamException { argument
73 super(in);
137 // ignore -- this must be the last START_ELEMENT in the doc
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/
H A DByteCodeEnhancer.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
84 * @param in The byte-code of the class to be enhanced.
90 boolean enhanceClassFile (InputStream in, argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DTextLoginDialog.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
60 * If these are not set, then it queries the user in the command window.
89 username = (new BufferedReader(new InputStreamReader(System.in))).readLine();
117 passwd = readPassword(System.in);
138 (new BufferedReader(new InputStreamReader(System.in))).readLine().toCharArray();
158 (new BufferedReader(new InputStreamReader(System.in))).readLine();
181 *@return The password of the user in plai
187 readPassword(InputStream in) argument
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DXATerminatorProxy.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
54 * can use it safely in Serialization mandated scenarios<br>
122 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { argument
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DRejar.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
105 JarFile in = new JarFile(module);
107 Enumeration<JarEntry> entries = in.entries();
123 copy(in, je, stream);
126 copy(in, je, jos);
130 if (in != null) {
132 in
142 copy(JarFile in, JarEntry je, JarOutputStream jos) argument
152 copy(JarFile in, JarEntry je, OutputStream os) argument
156 copy(JarFile in, JarEntry je, WritableByteChannel out) argument
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/io/
H A DEJBObjectInputStream.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
76 EJBObjectInputStream(InputStream in, ClassLoader appCl, boolean resolve) argument
79 super(in);
97 // available in the container. If the orb is not present, this will be null.
122 * initialized so that code doesn't make the assumption that an orb is available in
/glassfish-3.1.2/tests/quicklook/web/jruby/src/test/
H A DJRubyTestNG.java9 * may not use this file except in compliance with the License. You can
15 * When distributing the software, include this License Header Notice in each
20 * exception as provided by Oracle in the GPL Version 2 section of the License
31 * elects to include this software in this distribution under the [CDDL or GPL
67 BufferedReader in = null; field in class:JRubyTestNG
70 *If two asserts are mentioned in one method, then last assert is taken in
83 in = new BufferedReader(new FileReader(fileName));
88 if(in != null) {
92 while (( line = in
[all...]

Completed in 242 milliseconds

1234