1 16 package org.springframework.webflow.action; 17 18 import org.springframework.webflow.execution.Event; 19 import org.springframework.webflow.execution.RequestContext; 20 import org.springframework.webflow.execution.support.EventFactorySupport; 21 22 28 public class SuccessEventFactory extends EventFactorySupport implements ResultEventFactory { 29 30 public Event createResultEvent(Object source, Object resultObject, RequestContext context) { 31 return success(source, resultObject); 32 } 33 } | Popular Tags |