Package org.apache.stanbol.commons.namespaceprefix.provider.prefixcc

Examples of org.apache.stanbol.commons.namespaceprefix.provider.prefixcc.PrefixccProvider


     * Manages: {@link #provider} and {@link #providerRegistration}
     */
    private synchronized void updateProviderState(){
        if(providerProperties != null && offlineMode == null){ //register
            if(providerRegistration == null){
                provider = new PrefixccProvider(updateInterval, TimeUnit.MINUTES);
                providerRegistration = bc.registerService(
                    NamespacePrefixProvider.class.getName(), provider, providerProperties);
                log.info("registered prefix.cc NamespacePrefixProvider ...");
            }
        } else { //unregister
View Full Code Here

TOP

Related Classes of org.apache.stanbol.commons.namespaceprefix.provider.prefixcc.PrefixccProvider

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.