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

net.anotheria.anosite.gen.aswizarddata.action.EditWizardDefAction Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** EditWizardDefAction.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.aswizarddata.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.aswizarddata.bean.EditWizardDefFB;
import net.anotheria.anosite.gen.aswizarddata.data.WizardDef;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.asg.data.LockableObject;
import net.anotheria.anosite.gen.aswizarddata.data.WizardHandlerDef;
import net.anotheria.anosite.gen.anoaccessconfiguration.data.AccessOperation;

public class EditWizardDefAction extends ShowWizardDefsAction{

// 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);
		EditWizardDefFB form = new EditWizardDefFB() ;
		WizardDef wizarddef = getASWizardDataService().getWizardDef(id);
		checkWizardDefs(wizarddef, req);
		if(wizarddef instanceof LockableObject && !((LockableObject)wizarddef).isLocked() && isAutoLockingEnabled())
			lockWizardDefs(wizarddef, req);
		form.setId(wizarddef.getId());
		form.setName(wizarddef.getName());
		// wizardSteps is a table, storing size only
		form.setWizardSteps(wizarddef.getWizardStepsSize());
		form.setHandler(wizarddef.getHandler());
		form.setWizardCancelRedirectUrl(wizarddef.getWizardCancelRedirectUrl());
		form.setWizardFinishRedirectUrl(wizarddef.getWizardFinishRedirectUrl());
		form.setAccessOperation(wizarddef.getAccessOperation());
		form.setLocked(((LockableObject)wizarddef).isLocked());
		form.setLockerId(((LockableObject)wizarddef).getLockerId());
		form.setLockingTime(net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)wizarddef).getLockingTime()) + " automatic unlock expected AT : " + net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)wizarddef).getLockingTime() + getLockingTimeout()));


		//link handler to ASWizardData.WizardHandlerDef
		List wizardhandlerdefs = getASWizardDataService().getWizardHandlerDefs();
		List wizardhandlerdefsValues = new ArrayList(wizardhandlerdefs.size()+1);
		wizardhandlerdefsValues.add(new LabelValueBean("", "-----"));
		for (net.anotheria.anosite.gen.aswizarddata.data.WizardHandlerDef wizardhandlerdefTemp : wizardhandlerdefs){
			LabelValueBean bean = new LabelValueBean(wizardhandlerdefTemp.getId(), wizardhandlerdefTemp.getName() + " [" + wizardhandlerdefTemp.getId() + "]" );
			wizardhandlerdefsValues.add(bean);
		}
		form.setHandlerCollection(wizardhandlerdefsValues);
		try{
			form.setHandlerCurrentValue(getASWizardDataService().getWizardHandlerDef(wizarddef.getHandler()).getName());
		}catch(Exception e){
			form.setHandlerCurrentValue("none");
			form.setHandlerIdOfCurrentValue("none");
		}

		//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(wizarddef.getAccessOperation()).getName());
		}catch(Exception e){
			form.setAccessOperationCurrentValue("none");
			form.setAccessOperationIdOfCurrentValue("none");
		}
		addBeanToRequest(req, "objectId" , wizarddef.getId());
		addBeanToRequest(req, "EditASWizardDataWizardDefForm" , form);
		addBeanToRequest(req, "objectInfoString" , wizarddef.getObjectInfo().toString());
		addBeanToRequest(req, "apply.label.prefix", "Apply");
		addBeanToRequest(req, "save.label.prefix", "Save");
		addBeanToRequest(req, "transfer.label.prefix", "Transfer");

		addFieldExplanations(req, wizarddef);

		return mapping.success();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy