Dashboard > WebWork > ... > FAQ > Can I access my action's Result
  WebWork Log In View a printable version of the current page.  
  Can I access my action's Result
Added by tm_jee, last edited by tm_jee on Nov 21, 2005
Labels: 
(None)

Yes, that could be done with the help of an interceptor.

+ Method One +

public class MyInterceptor implements Interceptor {
  ...
	public String intercept(ActionInvocation invocation) throws Exception {
		Map<String, ResultConfig> resultsMap = invocation.getProxy().getConfig().getResults();

                // do something with ResultConfig in map

		return invocation.invoke();
	}
  ...
}

+ Method Two +

public class MyInterceptor implements Interceptor {
  ...
        public String intercept(ActionInvocation invocation) throws Exception {
             invocation.addPreResultListener(new PreResultListener() {
			public void beforeResult(ActionInvocation invocation, String resultCode) {
				Map<String, ResultConfig> resultsMap = invocation.getProxy().getConfig().getResults();
                                ResultConfig finalResultConfig = resultsMap.get(resultCode);
                                
                                // do something interesting with the 'to-be' executed result
			}
	     });

             return invocation.invoke();
        }

  ...
}

The difference between Method One and Two is that method two gives one, the final result to be executed.

Site powered by a free Open Source Project / Non-profit License (more) of Confluence - the Enterprise wiki.
Learn more or evaluate Confluence for your organisation.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 2.2.9 Build:#527 Sep 07, 2006) - Bug/feature request - Contact Administrators