KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > j2biz > blogunity > web > actions > my > DeleteTrackbackExecAction


1 /*
2  * $Id: DeleteTrackbackExecAction.java,v 1.1 2005/01/10 03:12:54 keyboardsamurai Exp $
3  * Created on 10.01.2005
4  * Last commit on $Date: 2005/01/10 03:12:54 $ by $Author: keyboardsamurai $
5  * Copyright (c) 2005 j2biz Group, http://www.j2biz.com
6  * Koeln / Duesseldorf , Germany
7  *
8  * @author Juan Antonio Agudo
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23  *
24  */

25
26 package com.j2biz.blogunity.web.actions.my;
27
28 import javax.servlet.http.HttpServletRequest JavaDoc;
29 import javax.servlet.http.HttpServletResponse JavaDoc;
30
31 import com.j2biz.blogunity.exception.BlogunityException;
32 import com.j2biz.blogunity.web.IActionResult;
33 import com.j2biz.blogunity.web.actions.AbstractAction;
34
35 /**
36  * @author tag Juan Antonio Agudo
37  * @since 0.2.2 (cian)
38  */

39 public class DeleteTrackbackExecAction extends AbstractAction {
40
41     /* (non-Javadoc)
42      * @see com.j2biz.blogunity.web.actions.AbstractAction#execute(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
43      */

44     public IActionResult execute(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) throws BlogunityException {
45         // TODO Auto-generated method stub
46
return null;
47     }
48
49 }
50
Popular Tags