Package org.graphity.processor.locator

Examples of org.graphity.processor.locator.PrefixMapper


  SPINModuleRegistry.get().init(); // needs to be called before any SPIN-related code
        ARQFactory.get().setUseCaches(false); // enabled caching leads to unexpected QueryBuilder behaviour
       
  // initialize locally cached ontology mapping
  LocationMapper mapper = new PrefixMapper("prefix-mapping.n3"); // check if file exists?
  LocationMapper.setGlobalLocationMapper(mapper);
  if (log.isDebugEnabled()) log.debug("LocationMapper.get(): {}", LocationMapper.get());

        DataManager manager = new DataManager(mapper, ARQ.getContext(), getServletContext(), getUriInfo());
        FileManager.setStdLocators(manager);
View Full Code Here

TOP

Related Classes of org.graphity.processor.locator.PrefixMapper

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.