- All Superinterfaces:
MvcEvent
Event fired after the view engine method
ViewEngine.processView(jakarta.mvc.engine.ViewEngineContext)
returns. This event is always fired, even if the view engine fails with an exception.
Must be fired after BeforeProcessViewEvent
.
For example:
public class EventObserver {
public void afterProcessView(@Observes AfterProcessViewEvent e) {
...
}
}
- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionClass
<? extends ViewEngine> Returns theViewEngine
selected by the implementation.getView()
Returns the view being processed.
-
Method Details
-
getView
String getView()Returns the view being processed.- Returns:
- the view.
-
getEngine
Class<? extends ViewEngine> getEngine()Returns theViewEngine
selected by the implementation.- Returns:
- the view engine selected.
-