return bean;
}
private void copyAsynchronous(List<AsyncMethod> methods, List<NamedMethodInfo> methodInfos) {
for (AsyncMethod asyncMethod : methods) {
NamedMethodInfo info = new NamedMethodInfo();
info.methodName = asyncMethod.getMethodName();
if (asyncMethod.getMethodParams() != null) {
info.methodParams = asyncMethod.getMethodParams().getMethodParam();
}
methodInfos.add(info);