Package org.encuestame.business.search

Examples of org.encuestame.business.search.IndexWriterManager


     * @throws EnMeExpcetion
     */
    @Scope("singleton")
    @Bean(name = "indexWriter", initMethod="openIndexWriter", destroyMethod="closeIndexWriter")
    public  IndexWriterManager indexWriterManager() throws EnMeExpcetion {
        final IndexWriterManager searchAttachmentManager = new IndexWriterManager();
        Assert.notNull(this.indexFSDirectory, "Index FSD Directory is null");
        searchAttachmentManager.setDirectoryStore(this.indexFSDirectory);
        return searchAttachmentManager;
    }
View Full Code Here

TOP

Related Classes of org.encuestame.business.search.IndexWriterManager

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.