01: /*
02: WikiForms - a WikiPage FORM handler for JSPWiki.
03:
04: Copyright (C) 2003 BaseN.
05:
06: JSPWiki Copyright (C) 2002 Janne Jalkanen (Janne.Jalkanen@iki.fi)
07:
08: This program is free software; you can redistribute it and/or modify
09: it under the terms of the GNU Lesser General Public License as published
10: by the Free Software Foundation; either version 2.1 of the License, or
11: (at your option) any later version.
12:
13: This program is distributed in the hope that it will be useful,
14: but WITHOUT ANY WARRANTY; without even the implied warranty of
15: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: GNU Lesser General Public License for more details.
17:
18: You should have received a copy of the GNU Lesser General Public License
19: along with this program; if not, write to the Free Software
20: */
21: package com.ecyrd.jspwiki.forms;
22:
23: /**
24: * A FormHandler performs logic based on input from an
25: * HTTP FORM, transmitted through a JSPWiki WikiPlugin
26: * (see Form.java).
27: *
28: * <P>This interface is currently empty and unused. It acts
29: * as a place holder: we probably want to switch from
30: * WikiPlugins to FormHandlers in Form.java, to enforce
31: * authentication, form execution permissions, and so on.
32: */
33: public interface FormHandler {
34: }
|