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

org.daisy.pipeline.webservice.jaxb.queue.Job 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:08 PM CET 
//


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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
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">
 *       <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="jobPriority" use="required" type="{http://www.daisy.org/ns/pipeline/data}priority" />
 *       <attribute name="clientPriority" use="required" type="{http://www.daisy.org/ns/pipeline/data}priority" />
 *       <attribute name="computedPriority" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="relativeTime" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="timestamp" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="moveDown" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="moveUp" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "job") public class Job { @XmlAttribute(name = "id", required = true) @XmlSchemaType(name = "anySimpleType") protected String id; @XmlAttribute(name = "href", required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(name = "jobPriority", required = true) protected Priority jobPriority; @XmlAttribute(name = "clientPriority", required = true) protected Priority clientPriority; @XmlAttribute(name = "computedPriority", required = true) protected double computedPriority; @XmlAttribute(name = "relativeTime", required = true) protected double relativeTime; @XmlAttribute(name = "timestamp", required = true) protected long timestamp; @XmlAttribute(name = "moveDown", required = true) @XmlSchemaType(name = "anyURI") protected String moveDown; @XmlAttribute(name = "moveUp", required = true) @XmlSchemaType(name = "anyURI") protected String moveUp; /** * 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 jobPriority property. * * @return * possible object is * {@link Priority } * */ public Priority getJobPriority() { return jobPriority; } /** * Sets the value of the jobPriority property. * * @param value * allowed object is * {@link Priority } * */ public void setJobPriority(Priority value) { this.jobPriority = value; } /** * Gets the value of the clientPriority property. * * @return * possible object is * {@link Priority } * */ public Priority getClientPriority() { return clientPriority; } /** * Sets the value of the clientPriority property. * * @param value * allowed object is * {@link Priority } * */ public void setClientPriority(Priority value) { this.clientPriority = value; } /** * Gets the value of the computedPriority property. * */ public double getComputedPriority() { return computedPriority; } /** * Sets the value of the computedPriority property. * */ public void setComputedPriority(double value) { this.computedPriority = value; } /** * Gets the value of the relativeTime property. * */ public double getRelativeTime() { return relativeTime; } /** * Sets the value of the relativeTime property. * */ public void setRelativeTime(double value) { this.relativeTime = value; } /** * Gets the value of the timestamp property. * */ public long getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * */ public void setTimestamp(long value) { this.timestamp = value; } /** * Gets the value of the moveDown property. * * @return * possible object is * {@link String } * */ public String getMoveDown() { return moveDown; } /** * Sets the value of the moveDown property. * * @param value * allowed object is * {@link String } * */ public void setMoveDown(String value) { this.moveDown = value; } /** * Gets the value of the moveUp property. * * @return * possible object is * {@link String } * */ public String getMoveUp() { return moveUp; } /** * Sets the value of the moveUp property. * * @param value * allowed object is * {@link String } * */ public void setMoveUp(String value) { this.moveUp = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy