Searched defs:ejbs (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DDeploymentImpl.java103 public DeploymentImpl(ReadableArchive archive, Collection<EjbDescriptor> ejbs, argument
115 libJarBDAs = scanForLibJars(archive, ejbs, context);
121 BeanDeploymentArchive bda = new BeanDeploymentArchiveImpl(archive, ejbs, context);
143 public void scanArchive(ReadableArchive archive, Collection<EjbDescriptor> ejbs, argument
147 libJarBDAs = scanForLibJars(archive, ejbs, context);
153 BeanDeploymentArchive bda = new BeanDeploymentArchiveImpl(archive, ejbs, context);
333 Set<EjbDescriptor> ejbs = new HashSet<EjbDescriptor>();
337 beanClasses, beanXMLUris, ejbs, context);
410 ReadableArchive archive, Collection<EjbDescriptor> ejbs,
450 libJarArchive, ejbs, contex
409 scanForLibJars( ReadableArchive archive, Collection<EjbDescriptor> ejbs, DeploymentContext context) argument
[all...]
H A DBeanDeploymentArchiveImpl.java127 Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx) {
128 this(archive, ejbs, ctx, null);
132 Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx, String bdaID) {
148 populate(ejbs);
149 populateEJBsForThisBDA(ejbs);
161 Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs) {
162 for(com.sun.enterprise.deployment.EjbDescriptor next : ejbs) {
175 Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx) {
184 populateEJBsForThisBDA(ejbs);
295 + ", Bean Classes #: " + getBeanClasses().size() + "," + beanClassesString + ", ejbs
126 BeanDeploymentArchiveImpl(ReadableArchive archive, Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx) argument
131 BeanDeploymentArchiveImpl(ReadableArchive archive, Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx, String bdaID) argument
160 populateEJBsForThisBDA( Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs) argument
174 BeanDeploymentArchiveImpl(String id, List<Class<?>> wClasses, Set<URI> wUris, Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs, DeploymentContext ctx) argument
328 populate(Collection<com.sun.enterprise.deployment.EjbDescriptor> ejbs) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DEjbBundleValidator.java526 // with it, attempt to resolve it by checking against all the ejbs
546 int numMatches = intfInfo.ejbs.size();
548 Iterator iter = intfInfo.ejbs.iterator();
601 String msg = localStrings.getLocalString("enterprise.deployment.util.multiple_ejbs_with_interface", "Cannot resolve reference {0} because there are {1} ejbs in the application with interface {2}.", new Object[] {ejbRef, numMatches, interfaceToMatch});
926 * Returns a map of interface name -> EjbIntfInfo based on all the ejbs
932 Collection ejbs = getEjbDescriptors();
936 for(Iterator iter = ejbs.iterator(); iter.hasNext();) {
1011 newInfo.ejbs = new HashSet<EjbDescriptor>();
1012 newInfo.ejbs.add(ejbDesc);
1016 intfInfo.ejbs
1234 Set<EjbDescriptor> ejbs; field in class:EjbBundleValidator.EjbIntfInfo
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/startup/
H A DEjbApplication.java92 private Collection<EjbDescriptor> ejbs; field in class:EjbApplication
124 this.ejbs = bundle.getEjbs();
137 return ejbs;
222 for (EjbDescriptor desc : ejbs) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DNamingResources.java110 private HashMap<String, ContextEjb> ejbs = new HashMap<String, ContextEjb>(); field in class:NamingResources
203 synchronized (ejbs) {
205 ejbs.put(ejb.getName(), ejb);
389 synchronized (ejbs) {
390 return ejbs.get(name);
402 synchronized (ejbs) {
403 ContextEjb results[] = new ContextEjb[ejbs.size()];
404 return ejbs.values().toArray(results);
640 synchronized (ejbs) {
641 ejb = ejbs
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DEjbBundleDescriptor.java71 private Set<EjbDescriptor> ejbs = new HashSet<EjbDescriptor>(); field in class:EjbBundleDescriptor
84 // Application exceptions defined for the ejbs in this module.
130 * Constructs an ejb bundle descriptor with no ejbs.
174 return ejbs.isEmpty();
222 * Return the set of references to resources held by ejbs defined in this module.
234 * Return true if I reference other ejbs, false else.
250 return this.ejbs;
377 Set ejbs = getEjbs();
378 if (ejbs==null)
380 for (Iterator ejbsItr = ejbs
[all...]

Completed in 2651 milliseconds