use of com.dexels.navajo.adapter.StandardAdapterLibrary in project navajo by Dexels.
the class Version method start.
@Override
public void start(BundleContext bc) throws Exception {
super.start(bc);
bundleContext = bc;
try {
FunctionFactoryInterface fi = FunctionFactoryFactory.getInstance();
fi.init();
fi.clearFunctionNames();
StandardAdapterFunctionLibrary extensionDef = new StandardAdapterFunctionLibrary();
registerAll(extensionDef);
StandardAdapterLibrary library = new StandardAdapterLibrary();
registerAll(library);
} catch (Throwable e) {
logger.error("Trouble starting NavajoAdapters bundle", e);
}
}
Aggregations