use of org.apache.camel.component.rest.DummyRestProcessorFactory in project camel by apache.
the class LoadRestFromXmlTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
jndi.bind("dummy-rest-api", new DummyRestProcessorFactory());
return jndi;
}
use of org.apache.camel.component.rest.DummyRestProcessorFactory in project camel by apache.
the class RouteIdFactoryTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
jndi.bind("dummy-rest-api", new DummyRestProcessorFactory());
return jndi;
}
use of org.apache.camel.component.rest.DummyRestProcessorFactory in project camel by apache.
the class CamelContextAddRestDefinitionsFromXmlTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
jndi.bind("dummy-rest-api", new DummyRestProcessorFactory());
return jndi;
}
Aggregations