All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.workflow.WorkflowCuration Maven / Gradle / Ivy

There is a newer version: 8.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.10.28 at 02:34:50 PM CDT 
//


package org.dspace.workflow;

import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="taskset-map" type="{https://dspace.org/workflow-curation}taskset-map-type"/>
 *         <element name="tasksets" type="{https://dspace.org/workflow-curation}tasksets-type"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "workflow-curation", namespace = "https://dspace.org/workflow-curation") @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") public class WorkflowCuration { @XmlElement(name = "taskset-map", namespace = "https://dspace.org/workflow-curation", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") protected TasksetMapType tasksetMap; @XmlElement(namespace = "https://dspace.org/workflow-curation", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") protected TasksetsType tasksets; /** * Gets the value of the tasksetMap property. * * @return * possible object is * {@link TasksetMapType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") public TasksetMapType getTasksetMap() { return tasksetMap; } /** * Sets the value of the tasksetMap property. * * @param value * allowed object is * {@link TasksetMapType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") public void setTasksetMap(TasksetMapType value) { this.tasksetMap = value; } /** * Gets the value of the tasksets property. * * @return * possible object is * {@link TasksetsType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") public TasksetsType getTasksets() { return tasksets; } /** * Sets the value of the tasksets property. * * @param value * allowed object is * {@link TasksetsType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-10-28T02:34:50-05:00", comments = "JAXB RI v2.3.2") public void setTasksets(TasksetsType value) { this.tasksets = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy