log.info("activating RWCFInvoker with locator: " + locator);
String graphName = (String) context.getProperties().get("graph");
TripleCollection graph;
try {
graph = tcManager.getMGraph(
new UriRef(graphName));
} catch (NoSuchEntityException e) {
graph = tcManager.createMGraph(
new UriRef(graphName));
}
Graph jenaGraph = new JenaGraph(graph);
final BundleContext bundleContext = context.getBundleContext();
Bundle[] installedBundles = bundleContext.getBundles();