public static void resolve(final EasyBeansEjbJarClassMetadata sessionBean) {
Iterator<EasyBeansEjbJarMethodMetadata> itMethods = sessionBean.getMethodMetadataCollection().iterator();
while (itMethods.hasNext()) {
EasyBeansEjbJarMethodMetadata method = itMethods.next();
IJavaxJwsWebMethod webMethod = method.getJavaxJwsWebMethod();
// Annotation present and not excluded
if (webMethod != null && !webMethod.getExclude()) {
method.setBusinessMethod(true);
}
}
}