Searched refs:app (Results 1 - 25 of 160) sorted by relevance

1234567

/glassfish-3.1.2/deployment/javaee-core/src/main/java/org/glassfish/javaee/core/deployment/
H A DApplicationHolder.java46 public Application app; field in class:ApplicationHolder
48 public ApplicationHolder(Application app) { argument
49 this.app = app;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/
H A DEARBasedPersistenceHelper.java77 * @param app application's descriptor
82 final Application app,
87 SubArchivePURootScanner earRootScanner = new EARTopLevelJARPURootScanner(app);
93 SubArchivePURootScanner libPURootScannerScanner = new EARLibraryPURootScanner(app);
111 private final Application app; field in class:EARBasedPersistenceHelper.EARLibraryPURootScanner
117 * @param app descriptor for the application
120 final Application app) {
121 this.app = app;
127 * Take advantage of the fact that the app'
81 addLibraryAndTopLevelCandidates(final ReadableArchive earArchive, final Application app, final boolean includeTopLevel, final Map<String,ReadableArchive> probablePersistentArchives) argument
119 EARLibraryPURootScanner( final Application app) argument
141 private final Application app; field in class:EARBasedPersistenceHelper.EARTopLevelJARPURootScanner
143 EARTopLevelJARPURootScanner(final Application app) argument
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/acl/
H A DResource.java48 private String app; field in class:Resource
52 protected Resource(String app, String name, String method) { argument
53 this.app = app;
63 return this.app;
H A DEJBResource.java52 public EJBResource(String app, Method method) { argument
53 super(app,method.getDeclaringClass().getName(), method.toString());
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DUpgradeService.java107 for (Application app : allApps) {
108 if (app.getEngine()!=null && app.getEngine().size()>0 &&
109 (app.getModule()==null || app.getModule().size()==0)) {
124 }, app);
127 + app.getName() + " please redeploy", tf);
158 * If an app client has a property setting for javaWebStartEnabled we
164 for (Application app : domain.getApplications().getApplications()) {
165 System.out.println("Checking app "
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/context/
H A DResourceContainerContextImpl.java98 Application app = getAppFromDescriptor();
100 if( app != null ) {
102 // Check for java:app/java:global dependencies at app-level
103 ejbRef = app.getEjbReferenceByName(name);
143 Application app = getAppFromDescriptor();
145 if( app != null ) {
147 // Check for java:app/java:global dependencies at app-level
148 resourceRef = app
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DDynamicReloader.java110 Application app = (Application) m;
111 if (Boolean.valueOf(app.getDeployProperties().getProperty
116 AppReloadInfo info = new AppReloadInfo(app);
117 appReloadInfo.put(app.getName(), info);
118 logger.fine("[Reloader] Monitoring " + app.getName() + " at " + app.getLocation());
157 * current apps (for example, if an app has been deployed since the
166 Application app = (Application) m;
167 if (Boolean.valueOf(app.getDeployProperties().getProperty
172 AppReloadInfo reloadInfo = findOrCreateAppReloadInfo(app);
193 findOrCreateAppReloadInfo(Application app) argument
266 private Application app; field in class:DynamicReloader.AppReloadInfo
270 AppReloadInfo(Application app) argument
[all...]
H A DUpgradeStartup.java143 for (Application app : domain.getApplications().getApplications()) {
144 logger.log(Level.INFO, "app " + app.getName() + " is " + app.getEnabled() + " resulting in " + Boolean.parseBoolean(app.getEnabled()));
145 if (Boolean.parseBoolean(app.getEnabled())) {
146 logger.log(Level.INFO, "Disabling application " + app.getName());
147 enabledApps.add(app);
148 enabledAppNames.add(app.getName());
157 Application app
283 redeployApp(Application app) argument
345 repackageArchive(Application app) argument
[all...]
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/javascripts/
H A Dapplication.js47 var app = {
51 app.listen();
60 $('websockets-frame').src = app.url + '?' + count;
130 elem.onclick = app.login;
140 elem.onclick = app.post;
143 Behaviour.addLoadEvent(app.initialize);
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DListComponentsCommand.java126 for (Application app : domain.getApplicationsInTarget(target)) {
127 if (!app.isLifecycleModule()) {
128 if (type==null || isApplicationOfThisType(app, type)) {
131 currentRow = new String[]{ app.getName(),
132 getAppSnifferEngines(app, true),
133 getLongStatus(app) };
135 currentRow = new String[]{ app.getName(),
136 getAppSnifferEngines(app, true)};
138 part.addProperty(app.getName(),
139 getAppSnifferEngines(app, fals
193 getLongStatus(Application app) argument
212 isApplicationOfThisType(final Application app, String type) argument
235 getAppSnifferEngines(final Application app, final boolean format) argument
278 getAppEngines(final Application app) argument
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/app/
H A DAppCheck.java41 package com.sun.enterprise.tools.verifier.tests.app;
H A DAppName.java41 package com.sun.enterprise.tools.verifier.tests.app;
43 import com.sun.enterprise.tools.verifier.tests.app.ApplicationTest;
H A DPersistenceUnitCount.java41 package com.sun.enterprise.tools.verifier.tests.app;
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/embedded/tasks/
H A DDeployTask.java52 String app = null; // a default value? field in class:DeployTask
59 public void setApp(String app) { argument
60 this.app = app;
130 Util.deploy(app, serverID, deployParams);
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DAppSpecificConnectorClassLoaderUtil.java86 Application app = appInfo.getMetaData(Application.class);
110 processDescriptorForRAReferences(app, null, app);
112 Collection<BundleDescriptor> bundleDescriptors = app.getBundleDescriptors();
117 String moduleName = getModuleName(bundleDesc, app);
118 processDescriptorForRAReferences(app, bundleDesc, moduleName);
122 processDescriptorForRAReferences(app, dd, moduleName);
128 private void processDescriptorForRAReferences(Application app, Descriptor descriptor, String moduleName) { argument
130 processDescriptorForRAReferences(app, moduleName, descriptor);
137 processDescriptorForRAReferences(app, moduleNam
164 getModuleName(BundleDescriptor bundleDesc, Application app) argument
190 processDescriptorForRAReferences(com.sun.enterprise.deployment.Application app, String moduleName, Descriptor descriptor) argument
217 detectResourceInRA(Application app, String moduleName, String jndiName) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DMessageDestinationReferencerImpl.java192 Application app = bundleDescriptor.getApplication();
193 if (app == null && bundleDescriptor instanceof Application) {
194 app = (Application)bundleDescriptor;
199 if( app != null ) {
205 targetBundle = app.getRelativeBundle(bundleDescriptor,
218 Set modules = app.getBundleDescriptors();
285 Application app = bundleDescriptor.getApplication();
286 String relativeUri = app.getRelativeUri(bundleDescriptor,
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/
H A DEndpointMapper.java69 public void unregisterEndpoint(String contextRoot, ApplicationContainer app) throws EndpointRegistrationException; argument
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/adapter/
H A DInstallerThread.java140 Application app = sa.createChild(Application.class);
141 sa.getModules().add(app);
142 app.setName(AdminConsoleAdapter.ADMIN_APP_NAME);
143 app.setEnabled(Boolean.TRUE.toString());
144 app.setObjectType("system-admin"); //TODO
145 app.setDirectoryDeployed("true");
146 app.setContextRoot(contextRoot);
148 app.setLocation("${com.sun.aas.installRootURI}/lib/install/applications/" + AdminConsoleAdapter.ADMIN_APP_NAME);
153 Module singleModule = app.createChild(Module.class);
154 app
[all...]
/glassfish-3.1.2/common/container-common/src/main/java/org/glassfish/javaee/services/
H A DApplicationScopedResourcesManager.java100 for(Application app : apps){
101 Resources resources = app.getResources();
105 List<Module> modules = app.getModule();
119 Application app = applications.getApplication(applicationName);
120 if(app != null){
121 return app.getResources();
127 Application app = applications.getApplication(applicationName);
128 if(app != null){
129 Resources appScopedResources = app.getResources();
134 List<Module> modules = app
[all...]
/glassfish-3.1.2/admin/config-api/src/test/java/com/sun/enterprise/configapi/tests/
H A DUpgradeTest.java93 for (Application app : apps.getApplications()) {
94 assertTrue(app.getEngine().isEmpty());
95 assertTrue(app.getModule().size()==1);
96 for (Module module : app.getModule()) {
97 assertTrue(module.getName().equals(app.getName()));
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/admin/
H A DGetRelativeJWSURICommand.java65 * an app client using Java Web Start.
101 final Application app = apps.getApplication(appname);
102 if (app != null) {
103 Module appClient = app.getModule(modulename);
105 appClient = app.getModule(modulename + ".jar");
110 * For stand-alone app clients the property is stored at the
114 result = app.getPropertyValue("jws.user.friendly.path");
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/
H A DWebModuleConfigCommand.java57 * All of these commands have the app-name (with perhaps /module-name appended)
88 * Returns the Application corresponding to the app specified in the
91 * @return Application object for the app
101 final Application app = application();
102 if (app == null) {
113 if (app.isStandaloneModule() && appNameAndOptionalModuleName.contains("/")) {
121 if ( ! app.isStandaloneModule() && ! appNameAndOptionalModuleName.contains("/")) {
125 webModuleList(app),
126 app.getModule().get(0).getName());
130 final Module module = app
145 webModuleList(final Application app) argument
[all...]
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/
H A DEntityManagerFactoryWrapper.java176 Application app = null;
188 app = module.getApplication();
197 app = module.getApplication();
204 app = module.getApplication();
228 if ((app != null) && (emf == null)) {
231 emf = app.getEntityManagerFactory(emfUnitName, module);
234 Set<EntityManagerFactory> emFactories = app
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DSecurityDeployer.java97 Application app = null;
107 app = appInfo.getMetaData(Application.class);
108 if (app == null) {
113 Set<WebBundleDescriptor> webDesc = app.getWebBundleDescriptors();
114 linkPolicies(app, webDesc);
115 commitEjbs(app);
142 Application app = dc.getModuleMetaData(Application.class);
143 Set<WebBundleDescriptor> webDesc = app.getWebBundleDescriptors();
239 private void commitEjbs(Application app) throws DeploymentException { argument
240 Set<EjbBundleDescriptor> ejbDescriptors = app
263 linkPolicies(Application app, Collection<WebBundleDescriptor> webs) argument
[all...]
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/versioning/
H A DVersioningUtils.java189 Application app = it.next();
191 // if a tagged version or untagged version of the app
192 if (app.getName().startsWith(untaggedName + EXPRESSION_SEPARATOR)
193 || app.getName().equals(untaggedName)) {
194 allVersions.add(app.getName());
256 String app = (String) it.next();
257 String identifier = getExpression(app);
268 matchedVersions.remove(app);
271 matchedVersions.remove(app);
274 matchedVersions.remove(app);
[all...]

Completed in 310 milliseconds

1234567