diff --git a/dspace-api/src/main/java/org/dspace/xmlworkflow/package-info.java b/dspace-api/src/main/java/org/dspace/xmlworkflow/package-info.java index 0eb25cf6a4..2f85f3c463 100644 --- a/dspace-api/src/main/java/org/dspace/xmlworkflow/package-info.java +++ b/dspace-api/src/main/java/org/dspace/xmlworkflow/package-info.java @@ -15,7 +15,9 @@ * {@link XmlWorkflowService#start}. This causes the wrapped Item to be * unwrapped and re-wrapped into a new {@link WorkflowItem}, and links the * WorkflowItem to objects which represent its state of progress through the - * workflow of its owning Collection. + * workflow of its owning Collection. This unwrapping/re-wrapping removes the + * Item from the user's workspace and places it into the target Collection's + * workflow. * *

The WorkflowItem proceeds through a sequence of * {@link org.dspace.xmlworkflow.state.Step "steps"}. Each step is configured @@ -28,6 +30,9 @@ * configured {@link org.dspace.curate.CurationTask Curation Task}s. See * {@link org.dspace.curate.service.XmlWorkflowCuratorService the workflow * curation service}. + * + *

An Item which has completed all "steps" in the target Collection's + * workflow is removed from the workflow and installed in the archive. */ package org.dspace.xmlworkflow; diff --git a/dspace-api/src/main/java/org/dspace/xmlworkflow/state/package-info.java b/dspace-api/src/main/java/org/dspace/xmlworkflow/state/package-info.java index f4a7861987..359cb343ce 100644 --- a/dspace-api/src/main/java/org/dspace/xmlworkflow/state/package-info.java +++ b/dspace-api/src/main/java/org/dspace/xmlworkflow/state/package-info.java @@ -6,7 +6,7 @@ * http://www.dspace.org/license/ */ /** - * A workflow contains a sequence of steps. + * A workflow consists of a sequence of steps. * A {@link org.dspace.workflow.WorkflowItem WorkflowItem} advances through the * sequence until it is either rejected or accepted. *