Package org.openengsb.core.ekb.api

Examples of org.openengsb.core.ekb.api.ModelGraph


public class Activator implements BundleActivator {
    private BundleTracker tracker;

    @Override
    public void start(BundleContext context) throws Exception {
        ModelGraph graph = context.getService(context.getServiceReference(ModelGraph.class));
        ModelRegistryService service = new ModelRegistryService(context);
        service.setGraphDb(graph);
        service.setEkbClassLoader(new EKBClassLoaderService(context));
        tracker = service;
        tracker.open();
View Full Code Here

TOP

Related Classes of org.openengsb.core.ekb.api.ModelGraph

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.