private void initMethodConcurrency(EjbModule jar, Map ejbds, EjbJarInfo ejbJarInfo) {
List<ContainerConcurrency> containerConcurrency = jar.getEjbJar().getAssemblyDescriptor().getContainerConcurrency();
for (ContainerConcurrency att : containerConcurrency) {
MethodConcurrencyInfo info = new MethodConcurrencyInfo();
info.description = att.getDescription();
info.concurrencyAttribute = att.getConcurrencyAttribute().toString();
info.methods.addAll(getMethodInfos(att.getMethod(), ejbds));
ejbJarInfo.methodConcurrency.add(info);