Package org.apache.stanbol.enhancer.servicesapi.impl

Examples of org.apache.stanbol.enhancer.servicesapi.impl.EnginesTracker


        if(chain.isEmpty()){
            throw new ConfigurationException(PROPERTY_CHAIN,
                "The configured chain MUST at least contain a single valid entry!");
        }
        //start tracking the engines of the configured chain
        tracker = new EnginesTracker(ctx.getBundleContext(), chain.keySet(),this);
        tracker.open();
    }
View Full Code Here


            throw new IllegalArgumentException("The parsed Chain name MUST NOT be NULL!");
        }
        this.context = context;
        this.name = name;
        Set<String> trackAll = Collections.emptySet();
        this.tracker = new EnginesTracker(context,
            trackAll, //empty set to track all engines
            this);
        this.tracker.open();
    }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.enhancer.servicesapi.impl.EnginesTracker

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.