Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Yes, you can access the ResultConfig objects before the Action executes, and you can access the final Result object using a PreResultListener.

Accessing the ResultConfig Objects

If you need to work with the set of ResultConfigs before the Action executes, you can use an Interceptor to process the Map returned by getResults.

...

Code Block
java
java
Map<String, ResultConfig> resultsMap = invocation.getProxy().getConfig().getResults();

Adding a PreResultListener

If you need to work with the final Result object before it is executed, you can use an Interceptor to register a PreResultListener. The code example creates a PreResultListener as an anonymous inner class.

...