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 ImmutableResult17 extends ResultType18 implements Result19 {20 21 public ImmutableResult(String name)22 {23 super(name);24 }25 26 public ResultType getType()27 {28 return this;29 }30 }31