Searched defs:componentId (Results 1 - 11 of 11) sorted by relevance

/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/spi/util/
H A DJavaEEContainerManager.java50 public void registerContainer(String componentId, JavaEEContainer container); argument
52 public void unregisterContainer(String componentId); argument
54 public JavaEEContainer getContainerFor(String componentId); argument
H A DComponentEnvManager.java56 public JndiNameEnvironment getJndiNameEnvironment(String componentId); argument
H A DInjectionManager.java135 String componentId,
134 injectInstance(Object instance, String componentId, boolean invokePostConstruct) argument
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/naming/
H A DGlassfishNamingManager.java75 * Lookup a naming entry for a particular componentId
77 public Object lookup(String componentId, String name) throws NamingException; argument
152 String componentId, boolean treatComponentAsModule,
242 public void unbindComponentObjects(String componentId) throws NamingException; argument
151 bindToComponentNamespace(String appName, String moduleName, String componentId, boolean treatComponentAsModule, Collection<? extends JNDIBinding> bindings) argument
/glassfish-3.1.2/orb/orb-connector/src/main/java/org/glassfish/enterprise/iiop/util/
H A DS1ASThreadPoolManager.java286 * Return an instance of ThreadPoolChooser based on the componentId that was
289 public ThreadPoolChooser getThreadPoolChooser(String componentId) { argument
299 * does not have to pay the cost of computing hashcode for the componentId
309 * Sets a ThreadPoolChooser for a particular componentId in the ThreadPoolManager. This
312 public void setThreadPoolChooser(String componentId, ThreadPoolChooser aThreadPoolChooser) { argument
319 * Gets the numeric index associated with the componentId specified for a
323 public int getThreadPoolChooserNumericId(String componentId) { argument
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/util/
H A DInjectionManagerImpl.java177 String componentId,
186 compEnvManager.getJndiNameEnvironment(componentId);
189 inject(instance.getClass(), instance, componentEnv, componentId, invokePostConstruct);
193 "No descriptor registered for componentId: {0}", componentId));
453 String componentId,
470 _inject(nextClass, instance, componentId, injInfo.getInjectionResources());
581 * Internal injection operation. componentId is only specified if
582 * componentId-specific lookup operation should be used.
585 String componentId,
176 injectInstance(Object instance, String componentId, boolean invokePostConstruct) argument
451 inject(final Class clazz, final Object instance, JndiNameEnvironment envDescriptor, String componentId, boolean invokePostConstruct) argument
584 _inject(final Class clazz, final Object instance, String componentId, List<InjectionCapable> injectableResources) argument
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/
H A DComponentInvocation.java73 public String componentId; field in class:ComponentInvocation
95 public ComponentInvocation(String componentId, argument
98 this.componentId = componentId;
104 public ComponentInvocation(String componentId, argument
108 this.componentId = componentId;
128 return this.componentId;
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/
H A DComponentEnvManagerImpl.java142 public void register(String componentId, JndiNameEnvironment env) { argument
145 compId2Env.putIfAbsent(componentId, nrj);
150 public void unregister(String componentId) { argument
151 RefCountJndiNameEnvironment rj = compId2Env.get(componentId);
153 compId2Env.remove(componentId);
156 public JndiNameEnvironment getJndiNameEnvironment(String componentId) { argument
157 RefCountJndiNameEnvironment rj = compId2Env.get(componentId);
158 if (componentId != null && _logger.isLoggable(Level.FINEST)) {
160 "getJndiNameEnvironment " + componentId + " is " +
170 if (inv.componentId !
[all...]
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DGlassfishNamingManagerImpl.java330 private Map getComponentNamespace(String componentId) argument
336 Map namespace = (Map) componentNamespaces.get(componentId);
339 componentNamespaces.put(componentId, namespace);
475 private Map getNamespace(String componentId, String logicalJndiName) throws NamingException { argument
477 ComponentIdInfo info = componentIdInfo.get(componentId);
479 return (info != null) ? getNamespace(info.appName, info.moduleName, componentId, logicalJndiName) :
480 getComponentNamespace(componentId);
484 String componentId, String logicalJndiName) throws NamingException {
489 namespace = getComponentNamespace(componentId);
496 namespace = getComponentNamespace(componentId);
483 getNamespace(String appName, String moduleName, String componentId, String logicalJndiName) argument
537 bindToComponentNamespace(String appName, String moduleName, String componentId, boolean treatComponentAsModule, Collection<? extends JNDIBinding> bindings) argument
661 unbindComponentObjects(String componentId) argument
750 lookup(String componentId, String name) argument
756 lookup(String componentId, String name, Context ctx) argument
935 String componentId; field in class:GlassfishNamingManagerImpl.ComponentIdInfo
[all...]
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DAppClientContainer.java271 private String componentId = null; field in class:AppClientContainer
360 componentId = componentEnvManager.bindToComponentNamespace(desc);
521 componentId,
601 String componentId,
615 componentId,
598 getClientMainClass(final ClassLoader loader, InjectionManager injectionManager, InvocationManager invocationManager, String componentId, AppClientContainer container, ApplicationClientDescriptor acDesc) argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DBaseContainer.java346 protected String componentId; // unique id for java:comp namespace lookup field in class:BaseContainer
3971 componentId = envManager.bindToComponentNamespace(ejbDescriptor);
3972 invFactory = new EjbInvocationFactory(componentId, this);
3985 return componentId;

Completed in 333 milliseconds