Interface ProgressReportingAwarePage
public interface ProgressReportingAwarePage
A page that supports progress reporting, e.g. page for editing users, orgs, roles.
 
Main responsibility of such a page is to correctly finish processing an operation that could have been executed asynchronously.
- 
Method SummaryModifier and TypeMethodDescriptionvoidcontinueEditing(org.apache.wicket.ajax.AjaxRequestTarget target) voidfinishProcessing(org.apache.wicket.ajax.AjaxRequestTarget target, Collection<ObjectDeltaOperation<? extends ObjectType>> executedDeltas, boolean returningFromAsync, OperationResult result) voidstartProcessing(org.apache.wicket.ajax.AjaxRequestTarget target, OperationResult result) 
- 
Method Details- 
startProcessing
- 
finishProcessingvoid finishProcessing(org.apache.wicket.ajax.AjaxRequestTarget target, Collection<ObjectDeltaOperation<? extends ObjectType>> executedDeltas, boolean returningFromAsync, OperationResult result) 
- 
continueEditingvoid continueEditing(org.apache.wicket.ajax.AjaxRequestTarget target) 
 
-