use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class RestSwaggerReaderTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class RestSwaggerReaderApiDocsOverrideTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class RestSwaggerReaderModelBookOrderTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class RestSwaggerReaderPropertyPlaceholderTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy-rest", new DummyRestConsumerFactory());
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class RestSwaggerGetUriParamTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("dummy", new DummyRestProducerFactory());
return jndi;
}
Aggregations