@SuppressWarnings("unchecked")
public void testPojoRoutes() throws Exception {
// START SNIPPET: register
// lets populate the context with the services we need
// note that we could just use a spring.xml file to avoid this step
JndiContext context = new JndiContext();
context.bind("bye", new SayService("Good Bye!"));
CamelContext camelContext = new DefaultCamelContext(context);
// END SNIPPET: register
// START SNIPPET: route