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

org.gs4tr.projectdirector.model.dto.xsd.DownloadActionResult Maven / Gradle / Ivy

Go to download

The newest version!

package org.gs4tr.projectdirector.model.dto.xsd;

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 DownloadActionResult complex type. * *

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

 * <complexType name="DownloadActionResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="processingFinished" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="repositoryItem" type="{http://dto.model.projectdirector.gs4tr.org/xsd}RepositoryItem"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DownloadActionResult", propOrder = { "message", "processingFinished", "repositoryItem" }) public class DownloadActionResult { @XmlElement(required = true, nillable = true) protected String message; @XmlElement(required = true, type = Boolean.class, nillable = true) protected Boolean processingFinished; @XmlElement(required = true) protected RepositoryItem repositoryItem; /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * 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; } /** * Gets the value of the repositoryItem property. * * @return * possible object is * {@link RepositoryItem } * */ public RepositoryItem getRepositoryItem() { return repositoryItem; } /** * Sets the value of the repositoryItem property. * * @param value * allowed object is * {@link RepositoryItem } * */ public void setRepositoryItem(RepositoryItem value) { this.repositoryItem = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy