25262728293031
implements FactoryBean, InitializingBean { public Object getObject() throws Exception { return new KnowledgeStoreServiceImpl(); }
78798081828384
@Before public void configureNode() { connection = new LocalConnection(); node = connection.getExecutionNode(null); node.set(KnowledgeStoreService.class, new KnowledgeStoreServiceImpl()); }