Package org.dspace.workflow
Class TasksetMapType
- java.lang.Object
-
- org.dspace.workflow.TasksetMapType
-
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public class TasksetMapType extends ObjectThe taskset-map element maps collection handles to tasksets enumerated in the 'tasksets' element. The special collection-handle 'default' is matched when a collection is not otherwise mapped. The special taskset name 'none' indicates no taskset to perform.Java class for taskset-map-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="taskset-map-type"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="mapping" type="{https://dspace.org/workflow-curation}mapping-type" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<MappingType>mapping
-
Constructor Summary
Constructors Constructor Description TasksetMapType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<MappingType>getMapping()Gets the value of the mapping property.
-
-
-
Field Detail
-
mapping
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") protected List<MappingType> mapping
-
-
Method Detail
-
getMapping
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public List<MappingType> getMapping()Gets the value of the mapping property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the mapping property.For example, to add a new item, do as follows:
getMapping().add(newItem);Objects of the following type(s) are allowed in the list
MappingType
-
-