Searched refs:libraries (Results 1 - 25 of 103) sorted by relevance

12345

/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/
H A DDeployCommandParameters.java65 public String libraries = null; field in class:DeployCommandParameters
153 public String libraries() { method in class:DeployCommandParameters
154 return libraries;
174 public static final String LIBRARIES = "libraries";
H A DOpsParams.java136 public abstract String libraries(); method in class:OpsParams
H A DStateCommandParameters.java60 public String libraries() { method in class:StateCommandParameters
61 throw new IllegalStateException("We need to be able to get access to libraries when enabling/disabling");
H A DUndeployCommandParameters.java93 public String libraries() { method in class:UndeployCommandParameters
94 throw new IllegalStateException("We need to be able to get access to libraries when undeploying");
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/data/
H A DApplicationInfo.java84 private String libraries; field in class:ApplicationInfo
131 * Returns the deployment time libraries for this application
132 * @return the libraries
135 return libraries;
139 * Sets the deployment time libraries for this application
140 * @param libraries the libraries
142 public void setLibraries(String libraries) { argument
143 this.libraries = libraries;
[all...]
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DConnectorsClassLoaderUtil.java129 _logger.log(Level.SEVERE, "error.creating.libraries.classloader", e);
204 List<URI> libraries ;
207 libraries = new ArrayList<URI>();
209 libraries = ConnectorsUtil.getInstalledLibrariesFromManifest(location, env);
212 ConnectorClassFinder ccf = createRARClassLoader(location, null, rarName, libraries);
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DConnectorRuntime.java1148 List<URI> libraries = ConnectorsUtil.getInstalledLibrariesFromManifest(moduleDirectory, env);
1149 return cclUtil.createRARClassLoader(moduleDirectory, parent, rarModuleName, libraries);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DApplicationLifecycle.java458 appInfo.setLibraries(commandParams.libraries());
541 // if we skip scanning external libraries, we should just
1193 if (deployParams.libraries != null) {
1194 app.setLibraries(deployParams.libraries);
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DDeployCommand.java734 if (libraries == null) {
735 libraries = app.getLibraries();
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/
H A DDFDeploymentProperties.java203 public void setLibraries(String libraries) { argument
204 if(libraries != null) {
205 setProperty(DEPLOY_OPTION_LIBRARIES, libraries);
326 public static final String DEPLOY_OPTION_LIBRARIES = "libraries";
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/
H A DDeploymentContextImpl.java213 // first we create the appLib class loader, this is non shared libraries class loader
406 if (parameters.libraries() != null) {
409 parameters.libraries(), env);
H A DDeploymentProperties.java304 public void setLibraries(String libraries) { argument
305 if(libraries != null) {
306 setProperty(DEPLOY_OPTION_LIBRARIES_KEY, libraries);
H A DInstalledLibrariesResolver.java57 * This class resolves the dependencies between optional packages (installed libraries) and also between
58 * apps/stand-alone modules that depend on optional packages (installed libraries)
73 //installed libraries list (accounts only for "domainRoot/lib/applibs" and not any
202 Set<String> libraries = new HashSet<String>();
206 //we are looking for libraries only in "applibs" directory, hence strict=false
209 libraries.addAll(installedLibraries);
211 // now check my libraries.
225 //we are looking for libraries only in "applibs" directory, hence strict=false
229 libraries.addAll(jarLibraries);
238 return libraries;
[all...]
/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
86 * @param deploymentLibs libraries option passed through deployment
89 * "libraries" defined for the module.
118 return getModuleClassPath(habitat, params.name(), params.libraries());
156 * converts libraries specified via EXTENSION_LIST entry in MANIFEST.MF of
157 * all of the libraries of the deployed archive to
158 * The libraries are made available to
176 * converts libraries specified via the --libraries deployment option to
179 * instance-root/lib/applibs. The libraries ar
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DWebDeployer.java235 DeployCommandParameters.class).libraries));
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DApplication.java158 * Gets the value of the libraries property.
167 * Sets the value of the libraries property.
382 deploymentParams.libraries = app.getLibraries();
/glassfish-3.1.2/admingui/common/src/main/resources/applications/
H A Dedit.inc118 <sun:staticText id="libraries" text="#{pageSession.valueMap['libraries']}"/>
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/embedded/tasks/
H A DDeployTask.java120 public void setLibraries(String libraries) { argument
121 deployParams.add("--libraries=" + libraries);
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/tasks/
H A DDeployTask.java116 public void setLibraries(String libraries) { argument
117 addCommandParameter("libraries", libraries);
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/
H A DApplicationClientJarMaker.java125 /* libraries holds URIs (relative to the application's root level) for
132 ArrayList<String> libraries = new ArrayList<String>();
165 //copy over all content of the appclient - also updates 'libraries' as needed
166 ClientJarMakerUtils.populateModuleJar(subSource, subSource2, subTarget, libraries, appURI, parentURI);
195 // The libraries list already contains URIs for JARs or directories
200 libraries.addAll(additionalLibraries);
204 // part of the Class-Path entry to the list of libraries. Note that the
206 ClientJarMakerUtils.addClassPathElementsFromManifestClassPaths(new File(appURI), libraries);
209 ClientJarMakerUtils.copyLibraries(source, target, libraries);
H A DClientJarMakerUtils.java130 ArrayList<String> libraries = new ArrayList<String>();
146 populateModuleJar(original, generated, target, libraries, parentURI, parentURI);
150 // part of the Class-Path entry to the list of libraries. Note that the
152 addClassPathElementsFromManifestClassPaths(appArchive, libraries);
155 * Copy any libraries we need.
157 copyLibraries(original, target, libraries);
168 *@param libraries List of Strings (possibly added to) refering to JARs or directories
173 List<String> libraries, URI containingAppURI,
203 addClassPathElementsFromManifest(mf, containingAppURI, moduleParentURI, libraries);
234 Vector<String> libraries
171 populateModuleJar(ReadableArchive original, ReadableArchive generated, WritableArchive target, List<String> libraries, URI containingAppURI, URI moduleParentURI) argument
260 copyLibraries(ReadableArchive source, WritableArchive target, List<String> libraries) argument
324 addClassPathElementsFromManifestClassPaths(File appArchive, List<String> libraries) argument
413 addClassPathElementsFromManifest(Manifest mf, URI appURI, URI moduleParentURI, List<String> libraries) argument
[all...]
H A DModuleClientJarMaker.java121 List<String> libraries = ClientJarMakerUtils.getLibraryEntries(
124 for (String entryName : libraries) {
/glassfish-3.1.2/build/maven-glassfishbuild-plugin/src/main/java/com/sun/enterprise/build/
H A DDistributionDashboardMojo.java152 List<Artifact> libraries = new ArrayList<Artifact>();
170 libraries.add(a);
185 if (!libraries.isEmpty()) {
187 dumpArtifacts(generator, libraries, true);
/glassfish-3.1.2/common/amx-config/src/main/java/org/glassfish/admin/amx/intf/config/
H A DLibraries.java54 * These dependencies appears *after* the libraries defined in
57 * libraries would be made available to the application in the
65 * Replaces the existing libraries Attribute. Certain
72 public void setLibraries(String libraries); argument
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A DMakefile59 libraries:: $(OBJDIR)/$(LIBPREFIX)$(AR_TARGET).$(STATIC_LIB_SUFFIX)

Completed in 219 milliseconds

12345