1 /* =============================================================================== 2 * 3 * Part of the InfoGlue Content Management Platform (www.infoglue.org) 4 * 5 * =============================================================================== 6 * 7 * Copyright (C) 8 * 9 * This program is free software; you can redistribute it and/or modify it under 10 * the terms of the GNU General Public License version 2, as published by the 11 * Free Software Foundation. See the file LICENSE.html for more information. 12 * 13 * This program is distributed in the hope that it will be useful, but WITHOUT 14 * ANY WARRANTY, including the implied warranty of MERCHANTABILITY or FITNESS 15 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License along with 18 * this program; if not, write to the Free Software Foundation, Inc. / 59 Temple 19 * Place, Suite 330 / Boston, MA 02111-1307 / USA. 20 * 21 * =============================================================================== 22 */ 23 24 package org.infoglue.cms.applications.workflowtool.actions; 25 26 import org.infoglue.cms.applications.common.actions.InfoGlueAbstractAction; 27 import org.infoglue.cms.controllers.kernel.impl.simple.EventController; 28 import org.infoglue.cms.entities.workflow.EventVO; 29 import org.infoglue.cms.util.ConstraintExceptionBuffer; 30 31 32 /** 33 * This action deletes a given event. 34 */ 35 36 public class DeleteEventAction extends InfoGlueAbstractAction 37 { 38 39 private ConstraintExceptionBuffer ceb; 40 private EventVO eventVO; 41 private String url = ""; 42 43 public DeleteEventAction() 44 { 45 this(new EventVO()); 46 } 47 48 public DeleteEventAction(EventVO eventVO) 49 { 50 this.eventVO = eventVO; 51 this.ceb = new ConstraintExceptionBuffer(); 52 } 53 54 55 public void setEventId(Integer eventId) 56 { 57 this.eventVO.setEventId(eventId); 58 } 59 60 public void setUrl(String url) 61 { 62 this.url = url; 63 } 64 65 public String doExecute() throws Exception 66 { 67 ceb.throwIfNotEmpty(); 68 69 EventController.delete(this.eventVO); 70 getResponse().sendRedirect(this.url); 71 72 return NONE; 73 } 74 75 } 76