use of org.neo4j.ext.udc.impl.UdcExtensionImpl in project graphdb by neo4j-attic.
the class OSGiActivator method start.
/**
* Called whenever the OSGi framework starts our bundle
*/
public void start(BundleContext bc) throws Exception {
// register the UdcExtenionImpl
Dictionary props = new Properties();
// Register our example service implementation in the OSGi service registry
bc.registerService(KernelExtension.class.getName(), new UdcExtensionImpl(), props);
}
Aggregations