Package org.deri.grefine.reconcile.util

Examples of org.deri.grefine.reconcile.util.GRefineJsonUtilitiesImpl


  //TODO ... ugly, isn't it?
  static public synchronized void initialize(File workingDir) throws JSONException, IOException{
    if(singleton==null){
      InputStream prefixesIn = GRefineServiceManager.class.getResourceAsStream("/files/prefixes");
      PrefixManager prefixManager = new PrefixManager(prefixesIn);
      singleton = new GRefineServiceManager(new ServiceRegistry(new GRefineJsonUtilitiesImpl(),prefixManager), workingDir);
      File servicesFile= new File(workingDir,"services");
      if(servicesFile.exists()){
        FileInputStream in = new FileInputStream(servicesFile);
        singleton.registry.loadFromFile(in);       
      }
View Full Code Here


        }
       
        SindiceBroker service = new SindiceBroker();
        for(int j=0;j<samples.size();j++){
          String s = samples.get(j);
          List<String> domains = service.guessDomain(s,s_resultsLimit,new GRefineJsonUtilitiesImpl());
          for(String domain:domains){
            if(domainsMap.containsKey(domain)){
              domainsMap.put(domain,domainsMap.get(domain).intValue() + 1);
            }else{
              domainsMap.put(domain, 0);
View Full Code Here

  private String domain;
  private RdfUtilities rdfUtilities;
  protected PreviewResourceCannedQuery previewResourceCannedQuery;
 
  public SindiceService(String id, String name,String domain){
    this(id,name,domain,new GRefineJsonUtilitiesImpl(), new RdfUtilitiesImpl(), new SindiceBroker(), new QueryEndpointFactory());
  }
View Full Code Here

TOP

Related Classes of org.deri.grefine.reconcile.util.GRefineJsonUtilitiesImpl

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.