// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.09.04 at 12:38:20 PM EDT // package org.switchyard.quickstarts.demos.library.types; 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.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:switchyard-quickstart-demo:library:1.0}loan"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @SuppressWarnings("serial") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "returnRequest", namespace = "urn:switchyard-quickstart-demo:library:1.0", propOrder = { "loan" }) @XmlRootElement(name = "returnRequest", namespace = "urn:switchyard-quickstart-demo:library:1.0") public class ReturnRequest implements Serializable { @XmlElement(namespace = "urn:switchyard-quickstart-demo:library:1.0", required = true) protected Loan loan; /** * Gets the value of the loan property. * * @return * possible object is * {@link Loan } * */ public Loan getLoan() { return loan; } /** * Sets the value of the loan property. * * @param value * allowed object is * {@link Loan } * */ public void setLoan(Loan value) { this.loan = value; } }