Un-deprecate FormData, there will never be another major version, beehive as a whole is deprecated

This commit is contained in:
Travis Burtrum 2017-04-20 10:31:49 -04:00
parent 6bcb3d0039
commit 6f4b54f5f3
1 changed files with 3 additions and 1 deletions

View File

@ -24,9 +24,11 @@ import org.apache.beehive.netui.pageflow.internal.BaseActionForm;
* Base class for form beans associated with action methods in {@link PageFlowController}s. Note that Page Flow actions
* may take form beans of any type.
*
* @deprecated Page Flow actions can accept form beans of any type; it is not necessary to extend this class. This
* Previously deprecated: Page Flow actions can accept form beans of any type; it is not necessary to extend this class. This
* will be removed in the next major version. In general, it's possible to remove <code>extends FormData</code>
* and replace it with <code>implements {@link java.io.Serializable}</code>.
*
* There will never be another major version though, so undeprecate here, beehive as a whole is deprecated. :)
*/
public class FormData extends BaseActionForm
{