Searched defs:classpath (Results 1 - 14 of 14) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/process/
H A DJavaClassRunner.java54 public JavaClassRunner(String classpath, String[] sysprops, String classname, String[] args) throws IOException{ argument
64 if(ok(classpath)) {
66 cmdline.add(classpath);
/glassfish-3.1.2/common/scattered-archive-api/src/main/java/org/glassfish/embeddable/archive/
H A DScatteredArchive.java189 * for(String classpath : classpaths)
190 * archive.addClassPath(classpath);
207 * classpath must be a File location.
209 // public void addClassPath(String classpath) {
210 // addClassPath(classpath != null ? new File(classpath) : null);
216 * The classpath that is added is considered as a plain Java CLASSPATH.
218 * <b>Case 1 : classpath is a directory:</b>
245 * <b>Case 2: classpath is a JAR file</b>
251 * @param classpath
255 addClassPath(File classpath) argument
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DCreateProfiler.java88 String classpath; field in class:CreateProfiler
141 newProfiler.setClasspath(classpath);
H A DRestartServer.java163 new JavaClassRunner(classpath, props, classname, args);
172 classpath = props.getProperty("-asadmin-classpath");
181 classpath = props.getProperty("-startup-classpath");
194 if (classpath == null && classname == null && argsString == null) {
199 if (!ok(classpath) || !ok(classname) || argsString == null) {
306 private String classpath; field in class:RestartServer
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DCreateLifecycleModuleCommand.java88 public String classpath = null; field in class:CreateLifecycleModuleCommand
147 if (classpath != null) {
148 appProps.setProperty(ServerTags.CLASSPATH, classpath);
/glassfish-3.1.2/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/
H A DRespawnInfo.java52 classpath = cp;
63 map.put(PREFIX + "classpath", classpath);
70 if(!ok(classpath))
71 throw new GFLauncherException("respawninfo.empty", "classpath");
101 private String classpath; field in class:RespawnInfo
H A DGFLauncherInfo.java269 public void setRespawnInfo(String classname, String classpath, String[] args) { argument
270 respawnInfo = new RespawnInfo(classname, classpath, args);
H A DGFLauncher.java692 // create a list of all the classpath pieces in the right order
869 return classpath;
873 classpath = s;
953 private String classpath; field in class:GFLauncher
/glassfish-3.1.2/web/web-glue/src/main/java/org/glassfish/web/jsp/
H A DJSPCompiler.java96 String classpath = null;
98 classpath = getClasspath(classpathList);
100 compile(inWebDir, outWebDir, wbd, classpath, serverContext);
107 WebBundleDescriptor wbd, String classpath,
112 if (classpath != null && classpath.length() >0) {
113 jspc.setClassPath(classpath);
186 String classpath = null;
203 classpath = sb.toString();
205 return classpath;
106 compile(File inWebDir, File outWebDir, WebBundleDescriptor wbd, String classpath, ServerContext serverContext) argument
[all...]
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DScatteredArchive.java156 * Adds a directory to the classes classpath. Will be used to retrieve requested .class
175 * Adds a URL for the classes classpath. Will be used to retrieve requested .class files
177 * @param classpath the new classpath element.
181 public Builder addClassPath(URL classpath) { argument
182 this.urls.add(classpath);
244 * Get the classpath URLs
246 * @return A read-only copy of the classpath URL Collection
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DServerLifecycleModule.java70 private String classpath; field in class:ServerLifecycleModule
96 void setClasspath(String classpath) { argument
97 this.classpath = classpath;
125 return this.classpath;
140 if (this.classpath != null) {
150 " has classpath URLs = " + sb.toString());
171 this.classpath, File.pathSeparator, "");
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/loader/util/
H A DASClassLoaderUtil.java81 * Gets the classpath associated with a module, suffixing libraries
99 StringBuilder classpath = new StringBuilder(getModulesClasspath(habitat));
104 classpath.append(commonClassPath).append(File.pathSeparator);
106 addDeployParamLibrariesForModule(classpath, moduleId, deploymentLibs, habitat);
108 _logger.log(Level.FINE, "Final classpath: " + classpath.toString());
110 return classpath.toString();
209 _logger.log(Level.WARNING, "Cannot convert classpath to URL",
231 //set shared classpath for module so that it doesn't need to be
339 * get URL list from classpath
347 getURLsFromClasspath(String classpath, String delimiter, String rootPath) argument
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/
H A DEnhancerClassLoader.java108 static public URL[] pathToURLs(String classpath) { argument
109 return URLClassPath.pathToURLs(classpath);
155 * @param urls the classpath to search
167 * @param urls the classpath to search
180 * @param classpath the classpath to search
182 public EnhancerClassLoader(String classpath, argument
185 this(pathToURLs(classpath));
193 * @param urls the classpath to search
206 * @param classpath th
208 EnhancerClassLoader(String classpath, JDOMetaData metaData, Properties settings, PrintWriter out) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/
H A DWebappLoader.java248 private String classpath = null; field in class:WebappLoader
495 * @return The classpath
498 return classpath;
1138 StringBuilder classpath = new StringBuilder();
1148 classpath.append(File.pathSeparator);
1152 classpath.append(cp);
1173 classpath.append(File.pathSeparator);
1177 classpath.append(repository);
1185 this.classpath = classpath
[all...]

Completed in 3740 milliseconds