agraphVersion = agraphVersion.trim();
if ( agraphVersion.startsWith("4.") ) {
return new Ag4TripleStore(_db, _adminDispatcher);
}
else if ( agraphVersion.startsWith("3.") ) {
return new AgTripleStore(_db, _adminDispatcher);
}
}
//
// If VIRTUOSO_HOST is given, then use the Virtuoso implementation.