net.anotheria.anosite.gen.aswebdata.action.SearchBoxsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** SearchBoxsAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.aswebdata.action;
import java.util.List;
import java.util.ArrayList;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionCommand;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.anodoc.query2.DocumentQuery;
import net.anotheria.anodoc.query2.string.ContainsStringQuery;
import net.anotheria.anodoc.query2.QueryResult;
import net.anotheria.anodoc.query2.QueryResultEntry;
import net.anotheria.anodoc.query2.ResultEntryBean;
public class SearchBoxsAction extends BaseBoxAction{
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String criteria = req.getParameter("criteria");
DocumentQuery query = new ContainsStringQuery(criteria);
QueryResult result = getASWebDataService().executeQueryOnBoxs(query);
if (result.getEntries().size()==0){
req.setAttribute("srMessage", "Nothing found.");
}else{
List beans = new ArrayList(result.getEntries().size());
for (int i=0; i