1 5 6 package org.infohazard.maverick.ctl; 7 8 import org.apache.commons.beanutils.BeanUtils; 9 10 24 public class ThrowawayBean2 extends Throwaway2 25 { 26 30 protected String perform() throws Exception  31 { 32 return SUCCESS; 33 } 34 35 37 protected final String go() throws Exception  38 { 39 BeanUtils.populate(this, this.getCtx().getRequest().getParameterMap()); 40 BeanUtils.populate(this, this.getCtx().getControllerParams()); 41 42 this.getCtx().setModel(this); 43 44 return this.perform(); 45 } 46 } | Popular Tags |