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.NewFeatureAction Maven / Gradle / Ivy
/**
********************************************************************************
*** NewFeatureAction.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.asfeature.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.asfeature.bean.EditFeatureFB;
import net.anotheria.anosite.gen.asfeature.data.Feature;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperUtil;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperRegistry;
import net.anotheria.webutils.bean.LabelValueBean;
public class NewFeatureAction extends ShowFeaturesAction{
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
EditFeatureFB form = new EditFeatureFB() ;
form.setId("");
//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, "EditASFeatureFeatureForm" , 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, Feature feature) {
if (!CMSViewHelperRegistry.getCMSViewHelpers("ASFeature.Feature").isEmpty()) {
String fieldDescription = null;
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASFeature.Feature", feature, "name");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.name", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASFeature.Feature", feature, "enabled");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.enabled", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASFeature.Feature", feature, "obsolete");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.obsolete", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASFeature.Feature", feature, "description");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.description", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASFeature.Feature", feature, "guards");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.guards", fieldDescription);
} //
} //addFieldExplanations END
}