@Override
 public void start() throws AnzoException {
   String[] postfixes =
       new String[] {
         "_B", "_L", "_LL", "_LU", "_U", "_USED_IDS", "_TL", "_LTL", "_DATATYPE", "_LANGUAGE"
       };
   nodeCentricTables = new String[postfixes.length];
   for (int i = 0; i < postfixes.length; i++) {
     nodeCentricTables[i] = datasource.getConfiguration().getContainerName() + postfixes[i];
   }
   String intResources =
       DatasourceDictionary.getInitFiles(datasource.getConfigurationParameters());
   if (intResources != null && intResources.length() > 0) {
     rdfInitFiles = new ArrayList<String>();
     StringTokenizer st = new StringTokenizer(intResources, ",");
     while (st.hasMoreTokens()) {
       rdfInitFiles.add(st.nextToken());
     }
   }
   // this.aclEventListeners = datasource.getAclEventListeners();
   hardReset = datasource.getConfiguration().getUseHardReset();
 }