Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.anotheria.anosite.gen.aswebdata.action.MultiOpPagexsFooterAction Maven / Gradle / Ivy
/**
********************************************************************************
*** MultiOpPagexsFooterAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 1.3.3 ***
*** Copyright (C) 2005 - 2010 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 javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionForward;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.maf.bean.FormBean;
import net.anotheria.anosite.gen.aswebdata.data.PagexFactory;
import net.anotheria.anosite.gen.aswebdata.data.Pagex;
import net.anotheria.anosite.gen.aswebdata.bean.FooterElementFB;
import net.anotheria.anosite.gen.aswebdata.bean.FooterQuickAddFB;
import net.anotheria.anosite.gen.aswebdata.data.Box;
import net.anotheria.anosite.gen.aswebdata.data.BoxSortType;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.anodoc.data.NoSuchDocumentException;
import net.anotheria.util.StringUtils;
import net.anotheria.asg.exception.ASGRuntimeException;
public class MultiOpPagexsFooterAction extends BasePagexAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateContainerMultiOpAction
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
String path = stripPath(mapping.getPath());
if (path.equals("aswebdataPagexFooterShow"))
return aswebdataPagexFooterShow(mapping, af, req, res);
if (path.equals("aswebdataPagexFooterAdd"))
return aswebdataPagexFooterAdd(mapping, af, req, res);
if (path.equals("aswebdataPagexFooterDelete"))
return aswebdataPagexFooterDelete(mapping, af, req, res);
if (path.equals("aswebdataPagexFooterMove"))
return aswebdataPagexFooterMove(mapping, af, req, res);
if (path.equals("aswebdataPagexFooterQuickAdd"))
return aswebdataPagexFooterQuickAdd(mapping, af, req, res);
throw new IllegalArgumentException("Unknown path: "+path);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListShowActionMethod
public ActionForward aswebdataPagexFooterShow(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, "ownerId");
Pagex pagex = getASWebDataService().getPagex(id);
addBeanToRequest(req, "ownerId", id);
checkPagexs(pagex, req);
FooterElementFB form = new FooterElementFB() ;
form.setPosition(-1);
form.setOwnerId(pagex.getId());
addBeanToRequest(req, "aswebdataPagexFooterElementForm", form);
FooterQuickAddFB quickAddForm = new FooterQuickAddFB() ;
quickAddForm.setOwnerId(pagex.getId());
addBeanToRequest(req, "aswebdataPagexFooterQuickAddForm", quickAddForm);
//link box to ASWebData.Box
List boxs = getASWebDataService().getBoxs(new BoxSortType(BoxSortType.SORT_BY_NAME));
List boxsValues = new ArrayList(boxs.size());
for (int i=0; i beans = new ArrayList(size);
for (int i=0; i targetList = pagex.getFooter();
String toSwap = targetList.remove(position);
targetList.add(0, toSwap);
pagex.setFooter(targetList);
getASWebDataService().updatePagex(pagex);
}
private void moveDown(Pagex pagex, int position) throws ASGRuntimeException {
if (position targetList = pagex.getFooter();
String toSwap = targetList.remove(position);
targetList.add(toSwap);
pagex.setFooter(targetList);
getASWebDataService().updatePagex(pagex);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListAddRowActionMethod
public ActionForward aswebdataPagexFooterAdd(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
FooterElementFB form = new FooterElementFB();
populateFormBean(req, form);
String id = form.getOwnerId();
System.out.println("FormBean: " + form.toString());;
Pagex pagex;
pagex = getASWebDataService().getPagex(id);
canUpdatePagexs(pagex, req);
checkPagexs(pagex, req);
pagex.addFooterElement(form.getBox());
getASWebDataService().updatePagex(pagex);
return aswebdataPagexFooterShow(mapping, af, req, res);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListQuickAddActionMethod
public ActionForward aswebdataPagexFooterQuickAdd(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
FooterQuickAddFB form = new FooterQuickAddFB();
populateFormBean(req, form);
String id = form.getOwnerId();
Pagex pagex;
pagex = getASWebDataService().getPagex(id);
canUpdatePagexs(pagex, req);
checkPagexs(pagex, req);
String paramIdsToAdd = form.getQuickAddIds();
String idParameters[] = StringUtils.tokenize(paramIdsToAdd, ',');
for (String anIdParam : idParameters){
String ids[] = StringUtils.tokenize(anIdParam, '-');
for (int i=Integer.parseInt(ids[0]); i<=Integer.parseInt(ids[ids.length-1]); i++){
pagex.addFooterElement(""+i);
}
}
getASWebDataService().updatePagex(pagex);
return aswebdataPagexFooterShow(mapping, af, req, res);
}
}