package com.rapid_i.repository.wsimport; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for processResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="processResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="completionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="exception" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="outputLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="trace" type="{http://service.web.rapidanalytics.de/}processStackTrace" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "processResponse", propOrder = { "completionTime", "exception", "id", "outputLocations", "processLocation", "startTime", "state", "trace" }) public class ProcessResponse { @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar completionTime; protected String exception; protected int id; @XmlElement(nillable = true) protected List<String> outputLocations; protected String processLocation; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startTime; protected String state; protected ProcessStackTrace trace; /** * Gets the value of the completionTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCompletionTime() { return completionTime; } /** * Sets the value of the completionTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCompletionTime(XMLGregorianCalendar value) { this.completionTime = value; } /** * Gets the value of the exception property. * * @return * possible object is * {@link String } * */ public String getException() { return exception; } /** * Sets the value of the exception property. * * @param value * allowed object is * {@link String } * */ public void setException(String value) { this.exception = value; } /** * Gets the value of the id property. * */ public int getId() { return id; } /** * Sets the value of the id property. * */ public void setId(int value) { this.id = value; } /** * Gets the value of the outputLocations property. * * <p> * 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 <CODE>set</CODE> method for the outputLocations property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOutputLocations().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getOutputLocations() { if (outputLocations == null) { outputLocations = new ArrayList<String>(); } return this.outputLocations; } /** * Gets the value of the processLocation property. * * @return * possible object is * {@link String } * */ public String getProcessLocation() { return processLocation; } /** * Sets the value of the processLocation property. * * @param value * allowed object is * {@link String } * */ public void setProcessLocation(String value) { this.processLocation = value; } /** * Gets the value of the startTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartTime() { return startTime; } /** * Sets the value of the startTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartTime(XMLGregorianCalendar value) { this.startTime = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the trace property. * * @return * possible object is * {@link ProcessStackTrace } * */ public ProcessStackTrace getTrace() { return trace; } /** * Sets the value of the trace property. * * @param value * allowed object is * {@link ProcessStackTrace } * */ public void setTrace(ProcessStackTrace value) { this.trace = value; } }