/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/data/ |
H A D | ApplicationRegistry.java | 63 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 D | GetRelativeJWSURICommand.java | 95 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 D | GetClientStubsCommand.java | 78 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 D | UndeployCommand.java | 116 Applications apps; field in class:UndeployCommand 187 Application application = apps.getModule(Application.class, appName);
|
H A D | DeployCommand.java | 109 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 D | Applications.java | 111 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 D | ConfigBeansUtilities.java | 62 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 D | AutoUndeploymentOperation.java | 73 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 D | WebModuleConfigCommand.java | 72 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 D | LifecycleModuleService.java | 88 Applications apps; field in class:LifecycleModuleService 143 List<Application> applications = apps.getApplications();
|