Examples of PJSearchDTO


Examples of org.dspace.app.webui.cris.dto.PJSearchDTO

  public boolean supports(Class arg0) {
    return clazz.isAssignableFrom(arg0);
  }

  public void validate(Object arg0, Errors arg1) {
    PJSearchDTO dto = (PJSearchDTO) arg0;

    if (dto.getSearchMode() != null) {
      if (dto.getAdvancedSyntax()) {
        ValidationUtils.rejectIfEmptyOrWhitespace(arg1, "queryString",
            "error.validation.hku.search.query.empty");
      }
    } else if (dto.getCodeSearchMode() != null) {
      ValidationUtils.rejectIfEmptyOrWhitespace(arg1, "codeQuery",
          "error.validation.hku.search.query.empty");
    } else {
      arg1.reject("error.validation.hku.search.unknow-mode");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.