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.EditScriptAction Maven / Gradle / Ivy
/**
********************************************************************************
*** EditScriptAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.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.assitedata.action;
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 java.util.List;
import java.util.ArrayList;
import net.anotheria.anosite.gen.assitedata.bean.EditScriptFB;
import net.anotheria.anosite.gen.assitedata.data.Script;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperUtil;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperRegistry;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.asg.data.LockableObject;
import net.anotheria.anosite.gen.asresourcedata.data.FileLink;
public class EditScriptAction extends ShowScriptsAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditAction
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditActionMethod
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
EditScriptFB form = new EditScriptFB() ;
Script script = getASSiteDataService().getScript(id);
checkScripts(script, req);
if(script instanceof LockableObject && !((LockableObject)script).isLocked() && isAutoLockingEnabled())
lockScripts(script, req);
form.setId(script.getId());
form.setName(script.getName());
form.setFile(script.getFile());
form.setLink(script.getLink());
form.setContent(script.getContent());
form.setBrowserFiltering(script.getBrowserFiltering());
// guards is a table, storing size only
form.setGuards(script.getGuardsSize());
form.setLocked(((LockableObject)script).isLocked());
form.setLockerId(((LockableObject)script).getLockerId());
form.setLockingTime(net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)script).getLockingTime()) + " automatic unlock expected AT : " + net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)script).getLockingTime() + getLockingTimeout()));
//link file to ASResourceData.FileLink
List filelinks = getASResourceDataService().getFileLinks();
List filelinksValues = new ArrayList(filelinks.size()+1);
filelinksValues.add(new LabelValueBean("", "-----"));
for (net.anotheria.anosite.gen.asresourcedata.data.FileLink filelinkTemp : filelinks){
LabelValueBean bean = new LabelValueBean(filelinkTemp.getId(), filelinkTemp.getName() + " [" + filelinkTemp.getId() + "]" );
filelinksValues.add(bean);
}
form.setFileCollection(filelinksValues);
try{
form.setFileCurrentValue(getASResourceDataService().getFileLink(script.getFile()).getName());
}catch(Exception e){
form.setFileCurrentValue("none");
form.setFileIdOfCurrentValue("none");
}
addBeanToRequest(req, "objectId" , script.getId());
addBeanToRequest(req, "EditASSiteDataScriptForm" , form);
addBeanToRequest(req, "objectInfoString" , script.getObjectInfo().toString());
addBeanToRequest(req, "apply.label.prefix", "Apply");
addBeanToRequest(req, "save.label.prefix", "Save");
addFieldExplanations(req, script);
return mapping.findForward("success");
}
private void addFieldExplanations(HttpServletRequest req, Script script) {
if (!CMSViewHelperRegistry.getCMSViewHelpers("ASSiteData.Script").isEmpty()) {
String fieldDescription = null;
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASSiteData.Script", script, "name");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.name", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASSiteData.Script", script, "link");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.link", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASSiteData.Script", script, "content");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.content", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASSiteData.Script", script, "browserFiltering");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.browserFiltering", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASSiteData.Script", script, "guards");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.guards", fieldDescription);
} //
} //addFieldExplanations END
}