/* 205 */ EJBMethodPermission permission = new EJBMethodPermission(ejbName, null, m);
/* 206 */ log.trace("Creating permission: " + permission);
/* */
/* 208 */ PermitAll unchecked = (PermitAll)container.resolveAnnotation(m, PermitAll.class);
/* 209 */ RolesAllowed permissions = (RolesAllowed)container.resolveAnnotation(m, RolesAllowed.class);
/* 210 */ DenyAll exclude = (DenyAll)container.resolveAnnotation(m, DenyAll.class);
/* */
/* 212 */ int annotationCount = getAnnotationCount(unchecked, permissions, exclude);
/* */
/* 214 */ if ((annotationCount == 0) && (beanPermissions == null) && (beanUnchecked == null))
/* */ {