All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anosite.gen.assitedata.action.SearchPageAliassAction Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
/**
 ********************************************************************************
 *** SearchPageAliassAction.java                                              ***
 *** generated by AnoSiteGenerator (ASG), Version: 2.6.10                     ***
 *** Copyright (C) 2005 - 2020 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.assitedata.action;

import java.util.List;
import java.util.ArrayList;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionCommand;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.maf.bean.FormBean;
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;
import net.anotheria.anosite.gen.shared.data.PageAliasTypeEnum;


public class SearchPageAliassAction extends BasePageAliasAction{

	public ActionCommand anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
		String criteria = req.getParameter("criteria");
		DocumentQuery query = new ContainsStringQuery(criteria);
		QueryResult result = getASSiteDataService().executeQueryOnPageAliass(query);
		if (result.getEntries().size()==0){
			req.setAttribute("srMessage", "Nothing found.");
		}else{
			List beans = new ArrayList(result.getEntries().size());
			for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy