Package org.apache.lucene.gdata.storage.lucenestorage.recover

Examples of org.apache.lucene.gdata.storage.lucenestorage.recover.RecoverController


        if(this.storageDirectory.endsWith("/") || this.storageDirectory.endsWith("\\"))
            recoverDirectory = this.storageDirectory.substring(0,this.storageDirectory.length()-1)+System.getProperty("file.separator")+RECOVERDIRECTORY;
        else
            recoverDirectory = this.storageDirectory+System.getProperty("file.separator")+RECOVERDIRECTORY;
        File recoverDirectoryFile = new File(recoverDirectory);
       return new RecoverController(recoverDirectoryFile,doRecover,keepfiles);
    }
View Full Code Here

TOP

Related Classes of org.apache.lucene.gdata.storage.lucenestorage.recover.RecoverController

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.