KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > command > result > ImmutableResult


1 /***************************************
2  * *
3  * Nukes: The OpenSource CMS *
4  * *
5  * Distributable under GPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.portal.common.command.result;
10
11
12 /**
13  * @author <a HREF="theute@users.sourceforge.net">Thomas Heute</a>
14  * $Revision: 1.1.1.1 $
15  */

16 public class ImmutableResult
17    extends ResultType
18    implements Result
19 {
20
21    public ImmutableResult(String JavaDoc name)
22    {
23       super(name);
24    }
25
26    public ResultType getType()
27    {
28       return this;
29    }
30 }
31
Popular Tags