// // 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.XmlType; /** * <p>Java class for loan complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="loan"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="approved" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{urn:switchyard-quickstart-demo:library:1.0}book" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @SuppressWarnings("serial") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "loan", namespace = "urn:switchyard-quickstart-demo:library:1.0", propOrder = { "id", "approved", "notes", "book" }) public class Loan implements Serializable { protected String id; protected boolean approved; protected String notes; @XmlElement(namespace = "urn:switchyard-quickstart-demo:library:1.0") protected Book book; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the approved property. * */ public boolean isApproved() { return approved; } /** * Sets the value of the approved property. * */ public void setApproved(boolean value) { this.approved = value; } /** * Gets the value of the notes property. * * @return * possible object is * {@link String } * */ public String getNotes() { return notes; } /** * Sets the value of the notes property. * * @param value * allowed object is * {@link String } * */ public void setNotes(String value) { this.notes = value; } /** * Gets the value of the book property. * * @return * possible object is * {@link Book } * */ public Book getBook() { return book; } /** * Sets the value of the book property. * * @param value * allowed object is * {@link Book } * */ public void setBook(Book value) { this.book = value; } }