Package com.tistory.devyongsik.crescent.index.entity

Examples of com.tistory.devyongsik.crescent.index.entity.IndexingCommand


  public String indexing(CrescentCollection collection, IndexingRequestForm indexingRequestForm) {
   
    logger.info("indexingRequestForm : {}", indexingRequestForm);
   
    IndexingType indexingType = IndexingType.valueOf(indexingRequestForm.getIndexingType().toUpperCase());
    IndexingCommand indexingCommand = IndexingCommand.valueOf(indexingRequestForm.getCommand().toUpperCase());
    String query = indexingRequestForm.getQuery();
   
    logger.info("Indexing type : {} , Indexing command : {} ", indexingType, indexingCommand);
    logger.info("Query : {}", query);
   
View Full Code Here

TOP

Related Classes of com.tistory.devyongsik.crescent.index.entity.IndexingCommand

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.