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.aswebdata.action.NewPagexAction Maven / Gradle / Ivy
/**
********************************************************************************
*** NewPagexAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 1.3.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.aswebdata.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.aswebdata.bean.EditPagexFB;
import net.anotheria.anosite.gen.aswebdata.data.Pagex;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperUtil;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperRegistry;
import net.anotheria.webutils.bean.LabelValueBean;
public class NewPagexAction extends ShowPagexsAction{
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
EditPagexFB form = new EditPagexFB() ;
form.setId("");
//link template to ASSiteData.PageTemplate
List pagetemplates = getASSiteDataService().getPageTemplates();
List pagetemplatesValues = new ArrayList(pagetemplates.size()+1);
pagetemplatesValues.add(new LabelValueBean("", "-----"));
for (net.anotheria.anosite.gen.assitedata.data.PageTemplate pagetemplate : pagetemplates){
LabelValueBean bean = new LabelValueBean(pagetemplate.getId(), pagetemplate.getName() );
pagetemplatesValues.add(bean);
}
form.setTemplateCollection(pagetemplatesValues);
//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 accessoperation : accessoperations){
LabelValueBean bean = new LabelValueBean(accessoperation.getId(), accessoperation.getName() );
accessoperationsValues.add(bean);
}
form.setAccessOperationCollection(accessoperationsValues);
addBeanToRequest(req, "EditASWebDataPagexForm" , form);
addBeanToRequest(req, "save.label.prefix", "Save");
addBeanToRequest(req, "apply.label.prefix" , "Apply");
addBeanToRequest(req, "objectInfoString" , "none");
addFieldExplanations(req, null);
return mapping.findForward("success");
} //
private void addFieldExplanations(HttpServletRequest req, Pagex pagex) {
if (!CMSViewHelperRegistry.getCMSViewHelpers("ASWebData.Pagex").isEmpty()) {
String fieldDescription = null;
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "name");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.name", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "title");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.title", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "keywords");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.keywords", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "description");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.description", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "mediaLinks");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.mediaLinks", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "scripts");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.scripts", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "attributes");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.attributes", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "c1");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.c1", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "c2");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.c2", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "c3");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.c3", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "header");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.header", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "footer");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.footer", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "localizations");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.localizations", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Pagex", pagex, "httpsonly");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.httpsonly", fieldDescription);
} //
} //addFieldExplanations END
}