}
return declarations;
}
public ContainerConcurrency getContainerConcurrency(final Method method) {
ContainerConcurrency concurrency = methods.get(method);
if (concurrency == null) {
concurrency = new ContainerConcurrency(null, bean.getEjbName(), method);
methods.put(method, concurrency);
assemblyDescriptor.getContainerConcurrency().add(concurrency);
}
return concurrency;
}