Package org.dspace.workflow
Class TasksetsType
- java.lang.Object
-
- org.dspace.workflow.TasksetsType
-
@Generated(value="com.sun.tools.xjc.Driver", date="2023-11-15T02:20:30-06:00", comments="JAXB RI v2.3.2") public class TasksetsType extends ObjectTasksets specify tasks to be automatically performed at specific stages of workflow. The taskset 'name' attribute should match the 'taskset' attribute in the task-set mapping above.Java class for tasksets-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tasksets-type"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="taskset" type="{https://dspace.org/workflow-curation}taskset-type" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TasksetType>taskset
-
Constructor Summary
Constructors Constructor Description TasksetsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TasksetType>getTaskset()Gets the value of the taskset property.
-
-
-
Field Detail
-
taskset
@Generated(value="com.sun.tools.xjc.Driver", date="2023-11-15T02:20:30-06:00", comments="JAXB RI v2.3.2") protected List<TasksetType> taskset
-
-
Method Detail
-
getTaskset
@Generated(value="com.sun.tools.xjc.Driver", date="2023-11-15T02:20:30-06:00", comments="JAXB RI v2.3.2") public List<TasksetType> getTaskset()Gets the value of the taskset 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 taskset property.For example, to add a new item, do as follows:
getTaskset().add(newItem);Objects of the following type(s) are allowed in the list
TasksetType
-
-