KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portlet > forums > commands > SimpleResultType


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Forums JBoss Portlet *
6  * *
7  * Distributable under GPL license. *
8  * See terms of license at gnu.org. *
9  * *
10  *****************************************/

11 package org.jboss.portlet.forums.commands;
12
13 import org.jboss.portal.common.command.result.ResultType;
14
15 /**
16  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
17  * @version $Revision: 1.1.1.1 $
18  */

19 public class SimpleResultType
20    extends ResultType
21 {
22    /** DOCUMENT_ME */
23    public static final ResultType TYPE_POST_DELETED = new SimpleResultType("TYPE_POST_DELETED");
24
25    /** DOCUMENT_ME */
26    public static final ResultType TYPE_COMPOSITE = new SimpleResultType("TYPE_COMPOSITE");
27
28    private SimpleResultType(String JavaDoc name)
29    {
30       super(name);
31    }
32 }
Popular Tags