<%-- 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/ --%> <%-- - Preview task page - - workflow.item: The workflow item for the task they're performing --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ page import="org.dspace.app.webui.servlet.MyDSpaceServlet" %> <%@ page import="org.dspace.content.Collection" %> <%@ page import="org.dspace.content.Item" %> <%@ page import="org.dspace.eperson.EPerson" %> <%@ page import="org.dspace.workflowbasic.BasicWorkflowItem" %> <%@ page import="org.dspace.workflowbasic.service.BasicWorkflowService" %> <% BasicWorkflowItem workflowItem = (BasicWorkflowItem) request.getAttribute("workflow.item"); Collection collection = workflowItem.getCollection(); Item item = workflowItem.getItem(); %>

<% if (workflowItem.getState() == BasicWorkflowService.WFSTATE_STEP1POOL) { %>

<%= collection.getName() %>

<% } else if(workflowItem.getState() == BasicWorkflowService.WFSTATE_STEP2POOL) { %>

<%= collection.getName() %>

<% } else if(workflowItem.getState() == BasicWorkflowService.WFSTATE_STEP3POOL) { %>

<%= collection.getName() %>

<% } %>
" /> " />