private Set<AnnotatedMethod<?>> observerMethodRegistry = new HashSet<AnnotatedMethod<?>>();
private boolean readyToRoute = false;
public void buildRoutes(@Observes final AfterBeanDiscovery abd, final BeanManager bm) {
log.debug("Building JMS Routes.");
RouteManager routeManager = new RouteManagerImpl();
for (AnnotatedType<?> at : eventRoutingRegistry) {
Object instance = null;
try {
instance = at.getJavaClass().newInstance();
} catch (InstantiationException ex) {