1
2
3
4 package org.flowfuse.base.frontend;
5
6 import org.apache.commons.logging.Log;
7 import org.apache.commons.logging.LogFactory;
8
9 /***
10 * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
11 * Flowfuse.org
12 * @version $Id: CommentActionForm.java,v 1.1 2005/11/20 15:02:04 skleinei Exp $
13 */
14 public class CommentActionForm extends ExecuteActionForm {
15
16
17 public final static String rcsid = "$Id: CommentActionForm.java,v 1.1 2005/11/20 15:02:04 skleinei Exp $";
18
19
20 protected final Log logger = LogFactory.getLog(this.getClass());
21
22 public CommentActionForm() {
23 setFormView("comment");
24 setCommandClass(FrontendCommand.class);
25 }
26
27 }
28
29