Package org.apache.oodt.cas.catalog.repository

Examples of org.apache.oodt.cas.catalog.repository.MemoryBasedCatalogRepositoryFactory


        tempFile.deleteOnExit();
        File tempDir = tempFile.getParentFile();
        String tmpDirPath = tempDir.getAbsolutePath();
   
    CatalogServiceLocalFactory factory = new CatalogServiceLocalFactory();
    factory.setCatalogRepositoryFactory(new MemoryBasedCatalogRepositoryFactory());
    factory.setIngestMapperFactory(this.getOracleIngestMapperFactory(tmpDirPath));
    factory.setOneCatalogFailsAllFail(true);
    factory.setSimplifyQueries(true);
    factory.setPluginStorageDir("/dev/null");
    factory.setRestrictIngestPermissions(false);
View Full Code Here


      tempFile.deleteOnExit();
      testDir = new File(tempFile.getParentFile(), "cas-catalog");
 
      CatalogServiceLocalFactory factory = new CatalogServiceLocalFactory();
      factory
          .setCatalogRepositoryFactory(new MemoryBasedCatalogRepositoryFactory());
      factory.setIngestMapperFactory(this
          .getOracleIngestMapperFactory(testDir.getAbsolutePath() + "/mapper"));
      factory.setOneCatalogFailsAllFail(true);
      factory.setSimplifyQueries(true);
      factory.setPluginStorageDir("/dev/null");
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.catalog.repository.MemoryBasedCatalogRepositoryFactory

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.