Searched defs:apps (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/data/
H A DApplicationRegistry.java63 private Map<String, ApplicationInfo> apps = new HashMap<String, ApplicationInfo>(); field in class:ApplicationRegistry
66 apps.put(name, info);
70 return apps.get(name);
75 apps.remove(name);
79 return apps.keySet();
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/admin/
H A DGetRelativeJWSURICommand.java95 private Applications apps; field in class:GetRelativeJWSURICommand
101 final Application app = apps.getApplication(appname);
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/
H A DGetClientStubsCommand.java78 private Applications apps; field in class:GetClientStubsCommand
99 for (Application app : apps.getApplications()) {
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DUndeployCommand.java116 Applications apps; field in class:UndeployCommand
187 Application application = apps.getModule(Application.class, appName);
H A DDeployCommand.java109 Applications apps; field in class:DeployCommand
273 new ApplicationConfigInfo(apps.getModule(Application.class, name));
573 Application app = apps.getModule(Application.class, name);
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DApplications.java111 public static <T> List<T> getModules(Applications apps, Class<T> type) { argument
113 for (Object module : apps.getModules()) {
123 public static <T> T getModule(Applications apps, Class<T> type, String moduleID) { argument
128 for (ApplicationName module : apps.getModules())
136 public static List<Application> getApplications(Applications apps) { argument
137 return getModules(apps, Application.class);
140 public static Application getApplication(Applications apps, String moduleID) { argument
145 for (ApplicationName module : apps.getModules())
153 Applications apps, String snifferType) {
154 return getApplicationsWithSnifferType(apps, snifferTyp
152 getApplicationsWithSnifferType( Applications apps, String snifferType) argument
157 getApplicationsWithSnifferType( Applications apps, String snifferType, boolean onlyStandaloneModules) argument
[all...]
H A DConfigBeansUtilities.java62 private static Applications apps; field in class:ConfigBeansUtilities
141 return allApps; //if there are no sys-apps, none can reference one :)
207 * Lists the app refs for non-system apps assigned to the specified server
209 * @return List of ApplicationRef for non-system apps assigned to the specified server
216 * Lists the app refs for apps assigned to the specified server, excluding
217 * system apps from the result if requested.
219 * @param excludeSystemApps whether system apps should be excluded
220 * @return List of ApplicationRef for apps assigned to the specified server
281 for (ApplicationName module : apps.getModules()) {
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/
H A DAutoUndeploymentOperation.java73 Applications apps; field in class:AutoUndeploymentOperation
132 List<Application> applications = apps.getApplications();
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/
H A DWebModuleConfigCommand.java72 private Applications apps; field in class:WebModuleConfigCommand
94 final Application result = apps.getModule(Application.class,
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DLifecycleModuleService.java88 Applications apps; field in class:LifecycleModuleService
143 List<Application> applications = apps.getApplications();

Completed in 21 milliseconds