Fix Javadoc in Action

Issue: SWF-1636
This commit is contained in:
Rossen Stoyanchev
2014-07-29 15:33:07 -04:00
parent 0df592a7c0
commit ab1efea0d0

View File

@@ -69,8 +69,8 @@ public interface Action {
* <ul>
* <li>Attributes set in {@link RequestContext#getRequestScope() request scope} exist for the life of the currently
* executing request only.
* <li>Attributes set in {@link RequestContext#getFlashScope() flash scope} exist until the next external user event
* is signaled. That time includes the current request plus any redirect or additional refreshes to the next view.
* <li>Attributes set in {@link RequestContext#getFlashScope() flash scope} exist until after view rendering is
* completed. That time includes the current request plus any redirect required for the view render to complete.
* <li>Attributes set in {@link RequestContext#getFlowScope() flow scope} exist for the life of the flow session and
* will be cleaned up automatically when the flow session ends.
* <li>Attributes set in {@link RequestContext#getConversationScope() conversation scope} exist for the life of the
@@ -98,4 +98,4 @@ public interface Action {
* <i>or</i> be handled by the current state of the calling flow execution.
*/
public Event execute(RequestContext context) throws Exception;
}
}