Package org.bigbluebutton.webminer.web.model

Examples of org.bigbluebutton.webminer.web.model.SearchCriteriaCommand


  @Override
  protected ModelAndView onSubmit(HttpServletRequest request,
      HttpServletResponse response, Object command, BindException errors)
      throws Exception {

    SearchCriteriaCommand srchCriteriaCommand = (SearchCriteriaCommand) command;
    int startFrom = (new Integer(srchCriteriaCommand.getStartFrom())).intValue();
    int endIndex = 0;
    String queryStr = srchCriteriaCommand.getKeyWords();
    String sortBy = srchCriteriaCommand.getSort();
    String operator = srchCriteriaCommand.getOperator();
    String relRange = srchCriteriaCommand.getRangeValue();
    boolean bSmart = (relRange!=null)&&(!relRange.isEmpty());
   
    boolean bSortByScore = sortBy.equalsIgnoreCase("byScore");
   
    if (logger.isInfoEnabled()) {
View Full Code Here

TOP

Related Classes of org.bigbluebutton.webminer.web.model.SearchCriteriaCommand

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.