use of org.apache.camel.impl.SimpleUuidGenerator in project camel by apache.
the class CamelContextFactoryBeanTest method testGetCustomUuidGenerator.
public void testGetCustomUuidGenerator() throws Exception {
StaticApplicationContext applicationContext = new StaticApplicationContext();
applicationContext.registerSingleton("uuidGenerator", SimpleUuidGenerator.class);
factory.setApplicationContext(applicationContext);
factory.afterPropertiesSet();
UuidGenerator uuidGenerator = factory.getContext().getUuidGenerator();
assertTrue(uuidGenerator instanceof SimpleUuidGenerator);
}
Aggregations