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.asresourcedata.action.MultiOpPushNotificationTemplatesLocalizationsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** MultiOpPushNotificationTemplatesLocalizationsAction.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.asresourcedata.action;
import java.util.List;
import java.util.ArrayList;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionCommand;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.anosite.gen.asresourcedata.data.PushNotificationTemplateFactory;
import net.anotheria.anosite.gen.asresourcedata.data.PushNotificationTemplate;
import net.anotheria.anosite.gen.asresourcedata.bean.LocalizationsElementFB;
import net.anotheria.asg.util.bean.PopulateUtility;
import net.anotheria.anosite.gen.asresourcedata.bean.LocalizationsQuickAddFB;
import net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundle;
import net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundleSortType;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.anodoc.data.NoSuchDocumentException;
import net.anotheria.util.StringUtils;
import net.anotheria.asg.exception.ASGRuntimeException;
public class MultiOpPushNotificationTemplatesLocalizationsAction extends BasePushNotificationTemplateAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateContainerMultiOpAction
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String path = stripPath(mapping.getPath());
if (path.equals("asresourcedataPushNotificationTemplateLocalizationsShow"))
return asresourcedataPushNotificationTemplateLocalizationsShow(mapping, req, res);
if (path.equals("asresourcedataPushNotificationTemplateLocalizationsAdd"))
return asresourcedataPushNotificationTemplateLocalizationsAdd(mapping, req, res);
if (path.equals("asresourcedataPushNotificationTemplateLocalizationsDelete"))
return asresourcedataPushNotificationTemplateLocalizationsDelete(mapping, req, res);
if (path.equals("asresourcedataPushNotificationTemplateLocalizationsMove"))
return asresourcedataPushNotificationTemplateLocalizationsMove(mapping, req, res);
if (path.equals("asresourcedataPushNotificationTemplateLocalizationsQuickAdd"))
return asresourcedataPushNotificationTemplateLocalizationsQuickAdd(mapping, req, res);
throw new IllegalArgumentException("Unknown path: "+path);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListShowActionMethod
public ActionCommand asresourcedataPushNotificationTemplateLocalizationsShow(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, "ownerId");
PushNotificationTemplate pushnotificationtemplate = getASResourceDataService().getPushNotificationTemplate(id);
addBeanToRequest(req, "ownerId", id);
checkPushNotificationTemplates(pushnotificationtemplate, req);
LocalizationsElementFB form = new LocalizationsElementFB() ;
form.setPosition(-1);
form.setOwnerId(pushnotificationtemplate.getId());
addBeanToRequest(req, "asresourcedataPushNotificationTemplateLocalizationsElementForm", form);
LocalizationsQuickAddFB quickAddForm = new LocalizationsQuickAddFB() ;
quickAddForm.setOwnerId(pushnotificationtemplate.getId());
addBeanToRequest(req, "asresourcedataPushNotificationTemplateLocalizationsQuickAddForm", quickAddForm);
//link guard to ASResourceData.LocalizationBundle
List localizationbundles = getASResourceDataService().getLocalizationBundles(new LocalizationBundleSortType(LocalizationBundleSortType.SORT_BY_NAME));
List localizationbundlesValues = new ArrayList(localizationbundles.size());
for (int i=0; i beans = new ArrayList(size);
for (int i=0; i targetList = pushnotificationtemplate.getLocalizations();
String toSwap = targetList.remove(position);
targetList.add(0, toSwap);
pushnotificationtemplate.setLocalizations(targetList);
getASResourceDataService().updatePushNotificationTemplate(pushnotificationtemplate);
}
private void moveDown(PushNotificationTemplate pushnotificationtemplate, int position) throws ASGRuntimeException {
if (position targetList = pushnotificationtemplate.getLocalizations();
String toSwap = targetList.remove(position);
targetList.add(toSwap);
pushnotificationtemplate.setLocalizations(targetList);
getASResourceDataService().updatePushNotificationTemplate(pushnotificationtemplate);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListAddRowActionMethod
public ActionCommand asresourcedataPushNotificationTemplateLocalizationsAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
LocalizationsElementFB form = new LocalizationsElementFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
PushNotificationTemplate pushnotificationtemplate;
pushnotificationtemplate = getASResourceDataService().getPushNotificationTemplate(id);
canUpdatePushNotificationTemplates(pushnotificationtemplate, req);
checkPushNotificationTemplates(pushnotificationtemplate, req);
pushnotificationtemplate.addLocalizationsElement(form.getGuard());
getASResourceDataService().updatePushNotificationTemplate(pushnotificationtemplate);
return asresourcedataPushNotificationTemplateLocalizationsShow(mapping, req, res);
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListQuickAddActionMethod
public ActionCommand asresourcedataPushNotificationTemplateLocalizationsQuickAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
LocalizationsQuickAddFB form = new LocalizationsQuickAddFB();
PopulateUtility.populate(form, req);
String id = form.getOwnerId();
PushNotificationTemplate pushnotificationtemplate;
pushnotificationtemplate = getASResourceDataService().getPushNotificationTemplate(id);
canUpdatePushNotificationTemplates(pushnotificationtemplate, req);
checkPushNotificationTemplates(pushnotificationtemplate, req);
String paramIdsToAdd = form.getQuickAddIds();
String idParameters[] = StringUtils.tokenize(paramIdsToAdd, ',');
for (String anIdParam : idParameters){
String ids[] = StringUtils.tokenize(anIdParam, '-');
for (int i=Integer.parseInt(ids[0]); i<=Integer.parseInt(ids[ids.length-1]); i++){
pushnotificationtemplate.addLocalizationsElement(""+i);
}
}
getASResourceDataService().updatePushNotificationTemplate(pushnotificationtemplate);
return asresourcedataPushNotificationTemplateLocalizationsShow(mapping, req, res);
}
}