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.asfeature.action.MultiOpBrandFeaturesGuardsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** MultiOpBrandFeaturesGuardsAction.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.asfeature.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.asfeature.data.BrandFeatureFactory;
import net.anotheria.anosite.gen.asfeature.data.BrandFeature;
import net.anotheria.anosite.gen.asfeature.bean.GuardsElementFB;
import net.anotheria.asg.util.bean.PopulateUtility;
import net.anotheria.anosite.gen.asfeature.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 MultiOpBrandFeaturesGuardsAction extends BaseBrandFeatureAction{
// 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("asfeatureBrandFeatureGuardsShow"))
return asfeatureBrandFeatureGuardsShow(mapping, req, res);
if (path.equals("asfeatureBrandFeatureGuardsAdd"))
return asfeatureBrandFeatureGuardsAdd(mapping, req, res);
if (path.equals("asfeatureBrandFeatureGuardsDelete"))
return asfeatureBrandFeatureGuardsDelete(mapping, req, res);
if (path.equals("asfeatureBrandFeatureGuardsMove"))
return asfeatureBrandFeatureGuardsMove(mapping, req, res);
if (path.equals("asfeatureBrandFeatureGuardsQuickAdd"))
return asfeatureBrandFeatureGuardsQuickAdd(mapping, req, res);
throw new IllegalArgumentException("Unknown path: "+path);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListShowActionMethod
public ActionCommand asfeatureBrandFeatureGuardsShow(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, "ownerId");
BrandFeature brandfeature = getASFeatureService().getBrandFeature(id);
addBeanToRequest(req, "ownerId", id);
checkBrandFeatures(brandfeature, req);
GuardsElementFB form = new GuardsElementFB() ;
form.setPosition(-1);
form.setOwnerId(brandfeature.getId());
addBeanToRequest(req, "asfeatureBrandFeatureGuardsElementForm", form);
GuardsQuickAddFB quickAddForm = new GuardsQuickAddFB() ;
quickAddForm.setOwnerId(brandfeature.getId());
addBeanToRequest(req, "asfeatureBrandFeatureGuardsQuickAddForm", 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 = brandfeature.getGuards();
String toSwap = targetList.remove(position);
targetList.add(0, toSwap);
brandfeature.setGuards(targetList);
getASFeatureService().updateBrandFeature(brandfeature);
}
private void moveDown(BrandFeature brandfeature, int position) throws ASGRuntimeException {
if (position targetList = brandfeature.getGuards();
String toSwap = targetList.remove(position);
targetList.add(toSwap);
brandfeature.setGuards(targetList);
getASFeatureService().updateBrandFeature(brandfeature);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListAddRowActionMethod
public ActionCommand asfeatureBrandFeatureGuardsAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
GuardsElementFB form = new GuardsElementFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
BrandFeature brandfeature;
brandfeature = getASFeatureService().getBrandFeature(id);
canUpdateBrandFeatures(brandfeature, req);
checkBrandFeatures(brandfeature, req);
brandfeature.addGuardsElement(form.getGuard());
getASFeatureService().updateBrandFeature(brandfeature);
return asfeatureBrandFeatureGuardsShow(mapping, req, res);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListQuickAddActionMethod
public ActionCommand asfeatureBrandFeatureGuardsQuickAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
GuardsQuickAddFB form = new GuardsQuickAddFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
BrandFeature brandfeature;
brandfeature = getASFeatureService().getBrandFeature(id);
canUpdateBrandFeatures(brandfeature, req);
checkBrandFeatures(brandfeature, 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++){
brandfeature.addGuardsElement(""+i);
}
}
getASFeatureService().updateBrandFeature(brandfeature);
return asfeatureBrandFeatureGuardsShow(mapping, req, res);
}
}