public void process(Context context, HttpServletRequest request, HttpServletResponse response, Collection collection)
throws PluginException, AuthorizeException
{
try
{
RecentSubmissionsManager rsm = new RecentSubmissionsManager(context);
RecentSubmissions recent = rsm.getRecentSubmissions(collection);
request.setAttribute("recently.submitted", recent);
}
catch (RecentSubmissionsException e)
{
throw new PluginException(e);