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

org.daisy.pipeline.webservice.jaxb.job.Script Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.01.03 at 12:32:07 PM CET 
//


package org.daisy.pipeline.webservice.jaxb.job;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
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">
 *       <choice maxOccurs="unbounded" minOccurs="0">
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}nicename"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}description"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}version"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}homepage"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}input"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}option"/>
 *         <element ref="{http://www.daisy.org/ns/pipeline/data}output"/>
 *       </choice>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="input-filesets" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       <attribute name="output-filesets" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nicenameOrDescriptionOrVersion" }) @XmlRootElement(name = "script") public class Script { @XmlElementRefs({ @XmlElementRef(name = "nicename", namespace = "http://www.daisy.org/ns/pipeline/data", type = JAXBElement.class, required = false), @XmlElementRef(name = "description", namespace = "http://www.daisy.org/ns/pipeline/data", type = JAXBElement.class, required = false), @XmlElementRef(name = "version", namespace = "http://www.daisy.org/ns/pipeline/data", type = JAXBElement.class, required = false), @XmlElementRef(name = "homepage", namespace = "http://www.daisy.org/ns/pipeline/data", type = JAXBElement.class, required = false), @XmlElementRef(name = "input", namespace = "http://www.daisy.org/ns/pipeline/data", type = Input.class, required = false), @XmlElementRef(name = "option", namespace = "http://www.daisy.org/ns/pipeline/data", type = Option.class, required = false), @XmlElementRef(name = "output", namespace = "http://www.daisy.org/ns/pipeline/data", type = Output.class, required = false) }) protected List nicenameOrDescriptionOrVersion; @XmlAttribute(name = "id", required = true) @XmlSchemaType(name = "anySimpleType") protected String id; @XmlAttribute(name = "href", required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(name = "input-filesets") @XmlSchemaType(name = "anySimpleType") protected String inputFilesets; @XmlAttribute(name = "output-filesets") @XmlSchemaType(name = "anySimpleType") protected String outputFilesets; /** * Gets the value of the nicenameOrDescriptionOrVersion 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 set method for the nicenameOrDescriptionOrVersion property. * *

* For example, to add a new item, do as follows: *

     *    getNicenameOrDescriptionOrVersion().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Input } * {@link Option } * {@link Output } * * */ public List getNicenameOrDescriptionOrVersion() { if (nicenameOrDescriptionOrVersion == null) { nicenameOrDescriptionOrVersion = new ArrayList(); } return this.nicenameOrDescriptionOrVersion; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * Gets the value of the inputFilesets property. * * @return * possible object is * {@link String } * */ public String getInputFilesets() { return inputFilesets; } /** * Sets the value of the inputFilesets property. * * @param value * allowed object is * {@link String } * */ public void setInputFilesets(String value) { this.inputFilesets = value; } /** * Gets the value of the outputFilesets property. * * @return * possible object is * {@link String } * */ public String getOutputFilesets() { return outputFilesets; } /** * Sets the value of the outputFilesets property. * * @param value * allowed object is * {@link String } * */ public void setOutputFilesets(String value) { this.outputFilesets = value; } }