Package org.exoplatform.services.jcr.impl.dataflow.serialization

Examples of org.exoplatform.services.jcr.impl.dataflow.serialization.ObjectReaderImpl


      ObjectReader backupInfo = null;
     
      try
      {
         backupInfo =
            new ObjectReaderImpl(PrivilegedFileHelper.fileInputStream(new File(storageDir,
               "JDBCWorkspaceDataContainer.info")));

         String srcContainerName = backupInfo.readString();
         boolean srcMultiDb = backupInfo.readBoolean();
View Full Code Here


      return dbCleaner;
   }

   private ObjectReaderImpl getBackupInfoReader(File storageDir) throws FileNotFoundException
   {
      return new ObjectReaderImpl(PrivilegedFileHelper.fileInputStream(new File(storageDir,
         "JDBCWorkspaceDataContainer.info")));
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.services.jcr.impl.dataflow.serialization.ObjectReaderImpl

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.