[DS-2058] A little more documentation touch-up.

This commit is contained in:
Mark H. Wood
2021-06-23 11:16:17 -04:00
parent 53738acf0b
commit d83c7b7151
2 changed files with 7 additions and 2 deletions

View File

@@ -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.
*
* <p>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}.
*
* <p>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;

View File

@@ -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.
*