Package org.dspace.app.webui.components

Examples of org.dspace.app.webui.components.RecentSubmissionsManager


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


  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);
View Full Code Here

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

  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);
View Full Code Here

TOP

Related Classes of org.dspace.app.webui.components.RecentSubmissionsManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.