public interface AfterProcessViewEvent extends MvcEvent
Event fired after the view engine method
ViewEngine.processView(javax.mvc.engine.ViewEngineContext)
returns successfully. If the an exception is thrown while processing a view,
this event may not be fired. Must be fired after BeforeProcessViewEvent
.
For example:
public class EventObserver {
public void afterProcessView(@Observes AfterProcessViewEvent e) {
...
}
}
Observes
Modifier and Type | Method and Description |
---|---|
Class<? extends ViewEngine> |
getEngine()
Returns the
ViewEngine selected by the implementation. |
String |
getView()
Returns the view being processed.
|
String getView()
Class<? extends ViewEngine> getEngine()
ViewEngine
selected by the implementation.Copyright © 2015 Oracle Corporation. All rights reserved.