Home > FAQs > Can we access an Action's Result |
Yes, you can access the ResultConfig objects before the Action executes, and you can access the final Result object using a PreResultListener.
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
.
If you are writing against Java 5, you could use a generic when obtain the map.
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.
If you are writing against Java 5, you could use a generic when obtain the map.