Searched defs:moduleID (Results 1 - 13 of 13) sorted by relevance

/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/
H A DClientJarMakerRegistry.java91 public void register(String moduleID, Thread clientJarMaker) { argument
93 registeredThreads.put(moduleID, clientJarMaker);
99 public boolean isRegistered(String moduleID) { argument
101 return registeredThreads.containsKey(moduleID);
110 public void unregister(String moduleID) { argument
112 registeredThreads.remove(moduleID);
119 public void waitForCompletion(String moduleID) { argument
121 Thread maker = (Thread) registeredThreads.get(moduleID);
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DApplications.java89 <T> T getModule(Class<T> type, String moduleID); argument
98 * @param moduleID the module ID of the application
102 Application getApplication(String moduleID); argument
123 public static <T> T getModule(Applications apps, Class<T> type, String moduleID) { argument
124 if (moduleID == null) {
129 if (type.isInstance(module) && module.getName().equals(moduleID))
140 public static Application getApplication(Applications apps, String moduleID) { argument
141 if (moduleID == null) {
146 if (module instanceof Application && module.getName().equals(moduleID))
H A DConfigBeansUtilities.java280 public static ApplicationName getModule(String moduleID) { argument
282 if (module.getName().equals(moduleID)) {
289 public static String getEnabled(String sn, String moduleID) { argument
290 ApplicationRef appRef = getApplicationRefInServer(sn, moduleID);
298 public static String getVirtualServers(String sn, String moduleID) { argument
299 ApplicationRef appRef = getApplicationRefInServer(sn, moduleID);
307 public static String getContextRoot(String moduleID) { argument
308 ApplicationName module = getModule(moduleID);
322 public static String getLibraries(String moduleID) { argument
323 ApplicationName module = getModule(moduleID);
341 getLocation(String moduleID) argument
373 getDirectoryDeployed(String moduleID) argument
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/login/common/
H A DServerLoginCallbackHandler.java65 private String moduleID = null; field in class:ServerLoginCallbackHandler
72 public ServerLoginCallbackHandler(String username, String password, String moduleID) { argument
75 this.moduleID = moduleID;
89 public void setModuleID(String moduleID) { argument
90 this.moduleID = moduleID;
111 ((CertificateRealm.AppContextCallback) callbacks[i]).setModuleID(moduleID);
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/
H A DTargetModuleIDImpl.java59 private String moduleID; field in class:TargetModuleIDImpl
72 * @param moduleID the name of the module
80 String moduleID,
84 this.moduleID = moduleID;
93 * @param moduleID the name of the module
95 public TargetModuleIDImpl(TargetImpl target, String moduleID) { argument
96 this(target, moduleID, null, new TargetModuleIDImpl[0]);
115 return moduleID;
78 TargetModuleIDImpl( TargetImpl target, String moduleID, TargetModuleIDImpl parent, TargetModuleIDImpl[] children) argument
H A DProgressObjectImpl.java82 protected String moduleID; field in class:ProgressObjectImpl
230 initializeTargetModuleIDs(moduleID);
240 moduleID = id;
244 * initialize the target module IDs with the passed application moduleID
247 protected void initializeTargetModuleIDs(String moduleID) { argument
248 TargetModuleIDImpl parentTargetModuleID = new TargetModuleIDImpl(target, moduleID);
267 // ? this.moduleID : status.getProperty(MODULE_ID);
463 TargetModuleIDImpl tmi = new TargetModuleIDImpl(aTarget, moduleID);
553 // initialize moduleID so the event can be populated with
554 // the proper moduleID
[all...]
H A DSunDeploymentManager.java691 *Set the name in the properties according to the moduleID. The module is the same for all the
762 *Set the name in the properties according to the moduleID. The module is the same for all the
926 private DFDeploymentProperties getRedeployOptions(String moduleID) { argument
929 deplProps.setName(moduleID);
1381 String moduleID = targetModuleIDs[i].getModuleID();
1386 DeploymentFacilityModuleWork work = (DeploymentFacilityModuleWork) moduleIDToInfoMap.get(moduleID);
1391 work = new DeploymentFacilityModuleWork(moduleID);
1392 moduleIDToInfoMap.put(moduleID, work);
1446 private String moduleID = null; field in class:SunDeploymentManager.DeploymentFacilityModuleWork
1458 public DeploymentFacilityModuleWork(String moduleID) { argument
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/realm/certificate/
H A DCertificateRealm.java329 private String moduleID; field in class:CertificateRealm.AppContextCallback
341 return moduleID;
350 public void setModuleID(String moduleID) { argument
351 this.moduleID = moduleID;
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DLaunchable.java165 static String moduleID( method in class:Launchable.LaunchableUtil
169 String moduleID = clientFacadeDescriptor.getModuleID();
171 * If the moduleID was never set explicitly in the descriptor then
176 if (moduleID.endsWith(".jar")) {
177 moduleID = deriveModuleID(groupFacadeURI, clientURI);
179 return moduleID;
183 final String moduleID,
196 return ( (moduleID != null && moduleID.equals(appClientName))
210 * The derived moduleID shoul
182 matchesName( final String moduleID, final URI groupFacadeURI, final ApplicationClientDescriptor clientFacadeDescriptor, final String appClientName) argument
[all...]
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/
H A DDeploymentFacility.java119 public DFProgressObject undeploy(Target[] targets, String moduleID); argument
127 * @param moduleID identifies the module to undeploy
131 public DFProgressObject undeploy(Target[] targets, String moduleID, Map options); argument
136 public DFProgressObject enable(Target[] targets, String moduleID); argument
141 public DFProgressObject disable(Target[] targets, String moduleID); argument
146 public DFProgressObject createAppRef(Target[] targets, String moduleID, Map options); argument
151 public DFProgressObject deleteAppRef(Target[] targets, String moduleID, Map options); argument
229 * deployed component identified with the moduleID parameter.
235 * @param moduleID is the moduleID o
241 downloadFile(File location, String moduleID, String moduleURI) argument
252 getClientStubs(String location, String moduleID) argument
[all...]
H A DAbstractDeploymentFacility.java131 * @param moduleID name of the module affected
136 protected DFProgressObject changeState(Target[] targets, String moduleID, String commandName, String action) { argument
146 DFCommandRunner commandRunner = getDFCommandRunner(commandName, commandParams, new String[]{moduleID});
149 if(!po.checkStatusAndAddStage((TargetImpl)target, localStrings.getLocalString("enterprise.deployment.client.change_state", "{0} of {1} in target {2}", action, moduleID, target.getName()), mainStatus)) {
153 new TargetModuleIDImpl((TargetImpl)target, moduleID);
163 po.setupForAbnormalExit(localStrings.getLocalString("enterprise.deployment.client.state_change_failed", "Attempt to change the state of the application {0} failed - {1}", moduleID, ioex.toString()), (TargetImpl)targets[0]);
205 public DFProgressObject createAppRef(Target[] targets, String moduleID, Map options) { argument
206 return changeAppRef(targets, moduleID, "create-application-ref", "Creation", options);
209 public DFProgressObject deleteAppRef(Target[] targets, String moduleID, Map options) { argument
210 return changeAppRef(targets, moduleID, "delet
213 changeAppRef(Target[] targets, String moduleID, String commandName, String action, Map options) argument
473 disable(Target[] targets, String moduleID) argument
477 downloadFile(File location, String moduleID, String moduleURI) argument
487 enable(Target[] targets, String moduleID) argument
742 getClientStubs(String location, String moduleID) argument
1009 undeploy(Target[] targets, String moduleID) argument
1020 undeploy(Target[] targets, String moduleID, Map undeploymentOptions) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DRootDeploymentDescriptor.java67 * each module is uniquely identified with a moduleID
69 protected String moduleID; field in class:RootDeploymentDescriptor
118 * each module is uniquely identified with a moduleID
119 * @param moduleID for this module
121 public void setModuleID(String moduleID) { argument
122 this.moduleID = moduleID;
272 if (moduleID!=null)
273 toStringBuffer.append("\n Module ID = ").append(moduleID);
/glassfish-3.1.2/security/webintegration/src/main/java/com/sun/web/security/
H A DRealmAdapter.java209 private String moduleID; field in class:RealmAdapter
237 public RealmAdapter(String realmName, String moduleID) { argument
239 this.moduleID = moduleID;
509 LoginContextDriver.doX500Login(subject, moduleID);
1680 this.moduleID = webDesc.getModuleID();

Completed in 54 milliseconds