<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Display information with a 'continue' button. (Maybe a cancel?) - - Attributes to pass in: - - collection - Collection we're managing - message - String to output - processedItems - List of UUID of items to be mapped. --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ page import="java.util.LinkedList" %> <%@ page import="java.util.UUID" %> <%@ page import="org.dspace.content.Collection" %> <% Collection collection = (Collection)request.getAttribute("collection"); // supported values: "none-selected", "none-removed", "added", "remove" String message = (String)request.getAttribute("message"); LinkedList processedItems = (LinkedList)request.getAttribute("processedItems"); %>

<% if (message.equals("none-selected")) { %> <% } else if (message.equals("none-removed")) { %> <% } else if (message.equals("added")) { %> <%-- Iterate through processed items --%> <% for (int i=0; i <%= (String)processedItems.get(i).toString() %>
<% } %> <% } else if (message.equals("remove")) { %> <%-- Iterate through processed items --%> <% for (int i=0; i <%= (String)processedItems.get(i).toString() %>
<% } %> <% } %>
"/>