All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.assitedata.action.MultiOpScriptsGuardsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** MultiOpScriptsGuardsAction.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.assitedata.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.anosite.gen.assitedata.data.ScriptFactory;
import net.anotheria.anosite.gen.assitedata.data.Script;
import net.anotheria.anosite.gen.assitedata.bean.GuardsElementFB;
import net.anotheria.asg.util.bean.PopulateUtility;
import net.anotheria.anosite.gen.assitedata.bean.GuardsQuickAddFB;
import net.anotheria.anosite.gen.asfederateddata.data.GuardDef;
import net.anotheria.anosite.gen.asfederateddata.data.GuardDefSortType;
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 MultiOpScriptsGuardsAction extends BaseScriptAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateContainerMultiOpAction
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String path = stripPath(mapping.getPath());
if (path.equals("assitedataScriptGuardsShow"))
return assitedataScriptGuardsShow(mapping, req, res);
if (path.equals("assitedataScriptGuardsAdd"))
return assitedataScriptGuardsAdd(mapping, req, res);
if (path.equals("assitedataScriptGuardsDelete"))
return assitedataScriptGuardsDelete(mapping, req, res);
if (path.equals("assitedataScriptGuardsMove"))
return assitedataScriptGuardsMove(mapping, req, res);
if (path.equals("assitedataScriptGuardsQuickAdd"))
return assitedataScriptGuardsQuickAdd(mapping, req, res);
throw new IllegalArgumentException("Unknown path: "+path);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListShowActionMethod
public ActionCommand assitedataScriptGuardsShow(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, "ownerId");
Script script = getASSiteDataService().getScript(id);
addBeanToRequest(req, "ownerId", id);
checkScripts(script, req);
GuardsElementFB form = new GuardsElementFB() ;
form.setPosition(-1);
form.setOwnerId(script.getId());
addBeanToRequest(req, "assitedataScriptGuardsElementForm", form);
GuardsQuickAddFB quickAddForm = new GuardsQuickAddFB() ;
quickAddForm.setOwnerId(script.getId());
addBeanToRequest(req, "assitedataScriptGuardsQuickAddForm", quickAddForm);
//link guard to ASFederatedData.GuardDef
List guarddefs = getASFederatedDataService().getGuardDefs(new GuardDefSortType(GuardDefSortType.SORT_BY_NAME));
List guarddefsValues = new ArrayList(guarddefs.size());
for (int i=0; i beans = new ArrayList(size);
for (int i=0; i targetList = script.getGuards();
String toSwap = targetList.remove(position);
targetList.add(0, toSwap);
script.setGuards(targetList);
getASSiteDataService().updateScript(script);
}
private void moveDown(Script script, int position) throws ASGRuntimeException {
if (position targetList = script.getGuards();
String toSwap = targetList.remove(position);
targetList.add(toSwap);
script.setGuards(targetList);
getASSiteDataService().updateScript(script);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListAddRowActionMethod
public ActionCommand assitedataScriptGuardsAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
GuardsElementFB form = new GuardsElementFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
Script script;
script = getASSiteDataService().getScript(id);
canUpdateScripts(script, req);
checkScripts(script, req);
script.addGuardsElement(form.getGuard());
getASSiteDataService().updateScript(script);
return assitedataScriptGuardsShow(mapping, req, res);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListQuickAddActionMethod
public ActionCommand assitedataScriptGuardsQuickAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
GuardsQuickAddFB form = new GuardsQuickAddFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
Script script;
script = getASSiteDataService().getScript(id);
canUpdateScripts(script, req);
checkScripts(script, 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++){
script.addGuardsElement(""+i);
}
}
getASSiteDataService().updateScript(script);
return assitedataScriptGuardsShow(mapping, req, res);
}
}