|| annotatedType.isAnnotationPresent(Stateless.class)
|| annotatedType.isAnnotationPresent(Singleton.class)
|| annotatedType.isAnnotationPresent(MessageDriven.class)
|| annotatedType.isAnnotationPresent(JmsMessageListener.class))) {
EjbContainer ejbContainer = EjbContainer.create();
ejbContainer.createBean(annotatedType, null);
event.veto();
}
}
public <T> void processBean(@Observes ProcessBeanImpl<T> event)