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.ascustomdata.action.MultiOpDialogCustomBoxHandlerDefsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** MultiOpDialogCustomBoxHandlerDefsAction.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.ascustomdata.action;
import net.anotheria.util.NumberUtils;
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.ascustomdata.data.CustomBoxHandlerDefFactory;
import net.anotheria.anosite.gen.ascustomdata.data.CustomBoxHandlerDef;
import net.anotheria.anosite.gen.ascustomdata.bean.EditCustomBoxHandlerDefFB;
import net.anotheria.asg.util.bean.PopulateUtility;
import net.anotheria.asg.data.LockableObject;
import net.anotheria.asg.util.locking.helper.DocumentLockingHelper;
public class MultiOpDialogCustomBoxHandlerDefsAction extends BaseCustomBoxHandlerDefAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateMultiOpDialogAction
@Override
public ActionCommand execute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
return super.execute(mapping, req, res);
} //execute
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String path = stripPath(mapping.getPath());
if (path.equals("ascustomdataCustomBoxHandlerDefDelete"))
return ascustomdataCustomBoxHandlerDefDelete(mapping, req, res);
if (path.equals("ascustomdataCustomBoxHandlerDefDuplicate"))
return ascustomdataCustomBoxHandlerDefDuplicate(mapping, req, res);
if (path.equals("ascustomdataCustomBoxHandlerDefUpdate"))
return ascustomdataCustomBoxHandlerDefUpdate(mapping, req, res);
if (path.equals("ascustomdataCustomBoxHandlerDefClose"))
return ascustomdataCustomBoxHandlerDefClose(mapping, req, res);
if (path.equals("ascustomdataCustomBoxHandlerDefLock"))
return ascustomdataCustomBoxHandlerDefLock(mapping, req, res);
if (path.equals("ascustomdataCustomBoxHandlerDefUnLock"))
return ascustomdataCustomBoxHandlerDefUnLock(mapping, req, res);
throw new IllegalArgumentException("Unknown path: "+path);
}
public ActionCommand ascustomdataCustomBoxHandlerDefDelete(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String[] iDs = req.getParameterValues(PARAM_ID);
if (iDs == null){
throw new RuntimeException("Parameter " + PARAM_ID + " is not set.");
}
for (String id : iDs){
CustomBoxHandlerDef customboxhandlerdefCurr = getASCustomDataService().getCustomBoxHandlerDef(id);
if (customboxhandlerdefCurr instanceof LockableObject){
LockableObject lockable = (LockableObject)customboxhandlerdefCurr;
DocumentLockingHelper.delete.checkExecutionPermission(lockable, false, getUserId(req));
}
getASCustomDataService().deleteCustomBoxHandlerDef(id);
}
res.sendRedirect("ascustomdataCustomBoxHandlerDefShow?ts="+System.currentTimeMillis());
return null;
}
public ActionCommand ascustomdataCustomBoxHandlerDefDuplicate(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
CustomBoxHandlerDef customboxhandlerdefSrc = getASCustomDataService().getCustomBoxHandlerDef(id);
CustomBoxHandlerDef customboxhandlerdefDest = CustomBoxHandlerDefFactory.createCustomBoxHandlerDef(customboxhandlerdefSrc);
CustomBoxHandlerDef customboxhandlerdefCreated = getASCustomDataService().createCustomBoxHandlerDef(customboxhandlerdefDest);
res.sendRedirect("ascustomdataCustomBoxHandlerDefEdit?ts="+System.currentTimeMillis()+"&"+PARAM_ID+"="+customboxhandlerdefCreated.getId());
return null;
}
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateUpdateActionMethod
public ActionCommand ascustomdataCustomBoxHandlerDefUpdate(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
EditCustomBoxHandlerDefFB form = new EditCustomBoxHandlerDefFB();
PopulateUtility.populate(form, req);
boolean create = false;
CustomBoxHandlerDef customboxhandlerdef = null;
if (form.getId()==null) {
res.sendRedirect("asresourcedataLocalizationBundleShow?ts="+System.currentTimeMillis());
return null;
}
if (form.getId().length()>0){
customboxhandlerdef = (CustomBoxHandlerDef)getASCustomDataService().getCustomBoxHandlerDef(form.getId()).clone();
}else{
customboxhandlerdef = CustomBoxHandlerDefFactory.createCustomBoxHandlerDef();
create = true;
}
String nextAction = req.getParameter("nextAction");
if (nextAction == null || nextAction.length() == 0)
nextAction = "close";
//skipped id because it's readonly.
customboxhandlerdef.setName(form.getName());
customboxhandlerdef.setClazz(form.getClazz());
CustomBoxHandlerDef updatedCopy = null;
if (create){
updatedCopy = getASCustomDataService().createCustomBoxHandlerDef(customboxhandlerdef);
}else{
canUpdateCustomBoxHandlerDefs(customboxhandlerdef, req);
checkCustomBoxHandlerDefs(customboxhandlerdef, req);
updatedCopy = getASCustomDataService().updateCustomBoxHandlerDef(customboxhandlerdef);
}
if (nextAction.equalsIgnoreCase("stay")){
res.sendRedirect("ascustomdataCustomBoxHandlerDefEdit?ts="+System.currentTimeMillis()+"&pId="+updatedCopy.getId());
}else{
unlockAfterUpdate(customboxhandlerdef, req);
res.sendRedirect("ascustomdataCustomBoxHandlerDefShow?ts="+System.currentTimeMillis());
}
return null;
}
/**
* Simply unlocks document after updation.
*/
private void unlockAfterUpdate(CustomBoxHandlerDef customboxhandlerdef, HttpServletRequest req) throws Exception{
if(((LockableObject)customboxhandlerdef).isLocked())
unLockCustomBoxHandlerDefs(customboxhandlerdef, req, false);
}
public ActionCommand ascustomdataCustomBoxHandlerDefLock(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
CustomBoxHandlerDef customboxhandlerdefCurr = id != null && !id.equals("") ? getASCustomDataService().getCustomBoxHandlerDef(id) : null;
if(customboxhandlerdefCurr != null && customboxhandlerdefCurr instanceof LockableObject){
LockableObject lockable = (LockableObject)customboxhandlerdefCurr;
DocumentLockingHelper.lock.checkExecutionPermission(lockable,false,getUserId(req));
lockCustomBoxHandlerDefs(customboxhandlerdefCurr, req);
}
res.sendRedirect(getRedirectUrl(req, customboxhandlerdefCurr));
return null;
}
public ActionCommand ascustomdataCustomBoxHandlerDefUnLock(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
CustomBoxHandlerDef customboxhandlerdefCurr = id != null && !id.equals("") ? getASCustomDataService().getCustomBoxHandlerDef(id) : null;
if(customboxhandlerdefCurr != null && customboxhandlerdefCurr instanceof LockableObject){
LockableObject lockable = (LockableObject)customboxhandlerdefCurr;
DocumentLockingHelper.unLock.checkExecutionPermission(lockable,isUserInRole(req, "admin"),getUserId(req));
unLockCustomBoxHandlerDefs(customboxhandlerdefCurr, req, false);
}
res.sendRedirect(getRedirectUrl(req, customboxhandlerdefCurr));
return null;
}
/**
* Simplest method for redirect url creation. nextAction == showEdit - going to 'editView', to 'listView' otherwise.
*/
private String getRedirectUrl(HttpServletRequest req, CustomBoxHandlerDef item){
String nextAction = req.getParameter("nextAction");
if (item==null || nextAction == null || nextAction.length() == 0)
return "ascustomdataCustomBoxHandlerDefShow?ts="+System.currentTimeMillis();
else
return nextAction.equals("showEdit") ? "ascustomdataCustomBoxHandlerDefEdit?ts="+System.currentTimeMillis()+"&pId="+item.getId()
: "ascustomdataCustomBoxHandlerDefShow?ts="+System.currentTimeMillis();
}
public ActionCommand ascustomdataCustomBoxHandlerDefClose(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
CustomBoxHandlerDef customboxhandlerdefCurr = id != null && !id.equals("") ? getASCustomDataService().getCustomBoxHandlerDef(id) : null;
if(customboxhandlerdefCurr != null && customboxhandlerdefCurr instanceof LockableObject && ((LockableObject)customboxhandlerdefCurr).isLocked())
unLockCustomBoxHandlerDefs(customboxhandlerdefCurr, req, false);
res.sendRedirect("ascustomdataCustomBoxHandlerDefShow?ts="+System.currentTimeMillis());
return null;
}
}