
eu.fispace.api.ag.PlantDiagnosisRequestDataResponse Maven / Gradle / Ivy
//
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.7
// Visite http://java.sun.com/xml/jaxb
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2016.05.31 a las 10:59:26 PM CEST
//
package eu.fispace.api.ag;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import eu.limetri.ygg.api.ResponseMessage;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
/**
*
* This class represents the diagnosis request details location
* (URL) that are sent to FIspace by fmis backend.
* The SDI component is going to forward this information to
* the B2B engine, specifically the crop manager capability.
*
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"plantDiagnosisRequestURL"
})
@XmlRootElement(name = "PlantDiagnosisRequestDataResponse")
public class PlantDiagnosisRequestDataResponse
extends ResponseMessage
implements Serializable, ToString
{
@XmlElement(required = true)
@XmlSchemaType(name = "anyURI")
protected String plantDiagnosisRequestURL;
/**
* Obtiene el valor de la propiedad plantDiagnosisRequestURL.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlantDiagnosisRequestURL() {
return plantDiagnosisRequestURL;
}
/**
* Define el valor de la propiedad plantDiagnosisRequestURL.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPlantDiagnosisRequestURL(String value) {
this.plantDiagnosisRequestURL = value;
}
public boolean isSetPlantDiagnosisRequestURL() {
return (this.plantDiagnosisRequestURL!= null);
}
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
super.appendFields(locator, buffer, strategy);
{
String thePlantDiagnosisRequestURL;
thePlantDiagnosisRequestURL = this.getPlantDiagnosisRequestURL();
strategy.appendField(locator, this, "plantDiagnosisRequestURL", buffer, thePlantDiagnosisRequestURL);
}
return buffer;
}
public PlantDiagnosisRequestDataResponse withPlantDiagnosisRequestURL(String value) {
setPlantDiagnosisRequestURL(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy