net.anotheria.anosite.gen.asfeature.action.EditBrandFeatureAction Maven / Gradle / Ivy
/**
********************************************************************************
*** EditBrandFeatureAction.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 jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionCommand;
import net.anotheria.maf.action.ActionMapping;
import java.util.List;
import java.util.ArrayList;
import net.anotheria.anosite.gen.asfeature.bean.EditBrandFeatureFB;
import net.anotheria.anosite.gen.asfeature.data.BrandFeature;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.asg.data.LockableObject;
import net.anotheria.anosite.gen.anoaccessconfiguration.data.AccessOperation;
public class EditBrandFeatureAction extends ShowBrandFeaturesAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditAction
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditActionMethod
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
EditBrandFeatureFB form = new EditBrandFeatureFB() ;
BrandFeature brandfeature = getASFeatureService().getBrandFeature(id);
checkBrandFeatures(brandfeature, req);
if(brandfeature instanceof LockableObject && !((LockableObject)brandfeature).isLocked() && isAutoLockingEnabled())
lockBrandFeatures(brandfeature, req);
form.setId(brandfeature.getId());
form.setName(brandfeature.getName());
form.setEnabled(brandfeature.getEnabled());
form.setActiveInProduction(brandfeature.getActiveInProduction());
form.setObsolete(brandfeature.getObsolete());
// brands is a table, storing size only
form.setBrands(brandfeature.getBrandsSize());
// guards is a table, storing size only
form.setGuards(brandfeature.getGuardsSize());
form.setAccessOperation(brandfeature.getAccessOperation());
form.setDescription(brandfeature.getDescription());
form.setLocked(((LockableObject)brandfeature).isLocked());
form.setLockerId(((LockableObject)brandfeature).getLockerId());
form.setLockingTime(net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)brandfeature).getLockingTime()) + " automatic unlock expected AT : " + net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)brandfeature).getLockingTime() + getLockingTimeout()));
//link accessOperation to AnoAccessConfiguration.AccessOperation
List accessoperations = getAnoAccessConfigurationService().getAccessOperations();
List accessoperationsValues = new ArrayList(accessoperations.size()+1);
accessoperationsValues.add(new LabelValueBean("", "-----"));
for (net.anotheria.anosite.gen.anoaccessconfiguration.data.AccessOperation accessoperationTemp : accessoperations){
LabelValueBean bean = new LabelValueBean(accessoperationTemp.getId(), accessoperationTemp.getName() + " [" + accessoperationTemp.getId() + "]" );
accessoperationsValues.add(bean);
}
form.setAccessOperationCollection(accessoperationsValues);
try{
form.setAccessOperationCurrentValue(getAnoAccessConfigurationService().getAccessOperation(brandfeature.getAccessOperation()).getName());
}catch(Exception e){
form.setAccessOperationCurrentValue("none");
form.setAccessOperationIdOfCurrentValue("none");
}
addBeanToRequest(req, "objectId" , brandfeature.getId());
addBeanToRequest(req, "EditASFeatureBrandFeatureForm" , form);
addBeanToRequest(req, "objectInfoString" , brandfeature.getObjectInfo().toString());
addBeanToRequest(req, "apply.label.prefix", "Apply");
addBeanToRequest(req, "save.label.prefix", "Save");
addBeanToRequest(req, "transfer.label.prefix", "Transfer");
addFieldExplanations(req, brandfeature);
return mapping.success();
}
}