Package org.mmisw.ont.triplestore.allegro4

Examples of org.mmisw.ont.triplestore.allegro4.Ag4TripleStore


    String agraphVersion = OntConfig.Prop.AGRAPH_VERSION.getValue();
    boolean useAllegroGraph = agraphVersion != null && agraphVersion.trim().length() > 0;
    if ( useAllegroGraph  ) {
      agraphVersion = agraphVersion.trim();
      if ( agraphVersion.startsWith("4.") ) {
        return new Ag4TripleStore(_db, _adminDispatcher);
      }
      else if ( agraphVersion.startsWith("3.") ) {
        return new AgTripleStore(_db, _adminDispatcher);
      }
    }
View Full Code Here

TOP

Related Classes of org.mmisw.ont.triplestore.allegro4.Ag4TripleStore

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.