* @param context The current DSpace content
* @param id The unique ID of the current workflow/workspace
*/
public static int getMaximumPageReached(Context context, String id) throws SQLException, AuthorizeException, IOException {
InProgressSubmission submission = findSubmission(context, id);
if (submission instanceof WorkspaceItem)
{
WorkspaceItem workspaceItem = (WorkspaceItem) submission;
int page = workspaceItem.getPageReached();