org.gs4tr.projectdirector.model.dto.xsd.UploadActionResult Maven / Gradle / Ivy
Show all versions of globallink-connect-api Show documentation
package org.gs4tr.projectdirector.model.dto.xsd;
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.XmlType;
/**
* Java class for UploadActionResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UploadActionResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="messages" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="processingFinished" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UploadActionResult", propOrder = {
"messages",
"processingFinished"
})
public class UploadActionResult {
@XmlElement(nillable = true)
protected List messages;
@XmlElement(required = true, type = Boolean.class, nillable = true)
protected Boolean processingFinished;
/**
* Gets the value of the messages 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 messages property.
*
*
* For example, to add a new item, do as follows:
*
* getMessages().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getMessages() {
if (messages == null) {
messages = new ArrayList();
}
return this.messages;
}
/**
* Gets the value of the processingFinished property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isProcessingFinished() {
return processingFinished;
}
/**
* Sets the value of the processingFinished property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setProcessingFinished(Boolean value) {
this.processingFinished = value;
}
}