/* * RemoveHandlingFileAction.java * * Created on December 15, 2005, 11:07 AM * * To change this template, choose Tools | Options and locate the template under * the Source Creation and Management node. Right-click the template and choose * Open. You can then make changes to the template in the Source Editor. */ package org.tgdb.webapp.action.model; import org.tgdb.form.FormDataManager; import org.tgdb.TgDbCaller; import org.tgdb.TgDbFormDataManagerFactory; import org.tgdb.webapp.action.TgDbAction; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; /** * * @author lami */ public class RemoveHandlingFileAction extends TgDbAction { /** Creates a new instance of RemoveHandlingFileAction */ public RemoveHandlingFileAction() { } /** * Returns the name of this action * @return The name of the action */ public String getName() { return "RemoveHandlingFileAction"; } /** * Performs this action * @param request The http request object * @param context The servlet context * @return True if this action could be performed */ public boolean performAction(HttpServletRequest request, ServletContext context) { try { TgDbCaller caller = (TgDbCaller)request.getSession().getAttribute("caller"); FormDataManager formDataManager = getFormDataManager( TgDbFormDataManagerFactory.EXPMODEL, TgDbFormDataManagerFactory.WEB_FORM, request); String eid = formDataManager.getValue("eid"); // modelManager.removeHandlingFile(Integer.parseInt(eid), caller); GetModelAction action = new GetModelAction(); action.performAction(request, context); return true; } catch (Exception e) { e.printStackTrace(); } return false; } }