* @return flag if alterBean should be invoked
*/
private boolean shouldCallAlterBeanMethod(final MethodInvocation pMInvoc, String alterBean, Logger logger) {
boolean callAlterBeanMethod = false;
Method method = pMInvoc.getMethod();
Component component = pMInvoc.getThis().getClass().getAnnotation(Component.class);
String currentBeanName = component.value();
if (alterBean != null && !alterBean.isEmpty()) {
if (alterBean.equals(currentBeanName)) {
logger.debug("FeatureFlipping on method:{} class:{} already on the alterBean {}", method.getName(), method
.getDeclaringClass().getName(), alterBean);
} else {