1 16 17 package org.apache.cocoon.components.modules.input; 18 19 import org.apache.avalon.framework.configuration.Configuration; 20 import org.apache.avalon.framework.thread.ThreadSafe; 21 import org.apache.cocoon.components.flow.FlowHelper; 22 23 import java.util.Map ; 24 25 33 public class FlowContinuationModule extends AbstractJXPathModule 34 implements ThreadSafe { 35 36 protected Object getContextObject(Configuration modeConf, 37 Map objectModel) { 38 39 return FlowHelper.getWebContinuation(objectModel); 40 } 41 } 42 | Popular Tags |