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

eu.fispace.api.ag.FurtherAdviceRequestDataRequest Maven / Gradle / Ivy

The newest version!
//
// 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.06.30 a las 10:15:50 PM CEST 
//


package eu.fispace.api.ag;

import java.io.Serializable;
import java.math.BigInteger;
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.XmlType;
import eu.limetri.ygg.api.RequestMessage;
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 consulting firm expert.
 *                     The SDI component is going to forward this information to
 *                     the B2B engine, specifically the fmis capability.
 *                 
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "furtherAdviceRequestID"
})
@XmlRootElement(name = "FurtherAdviceRequestDataRequest")
public class FurtherAdviceRequestDataRequest
    extends RequestMessage
    implements Serializable, ToString
{

    @XmlElement(required = true)
    protected BigInteger furtherAdviceRequestID;

    /**
     * Obtiene el valor de la propiedad furtherAdviceRequestID.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getFurtherAdviceRequestID() {
        return furtherAdviceRequestID;
    }

    /**
     * Define el valor de la propiedad furtherAdviceRequestID.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setFurtherAdviceRequestID(BigInteger value) {
        this.furtherAdviceRequestID = value;
    }

    public boolean isSetFurtherAdviceRequestID() {
        return (this.furtherAdviceRequestID!= 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);
        {
            BigInteger theFurtherAdviceRequestID;
            theFurtherAdviceRequestID = this.getFurtherAdviceRequestID();
            strategy.appendField(locator, this, "furtherAdviceRequestID", buffer, theFurtherAdviceRequestID);
        }
        return buffer;
    }

    public FurtherAdviceRequestDataRequest withFurtherAdviceRequestID(BigInteger value) {
        setFurtherAdviceRequestID(value);
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy