001
002package org.kuali.ole.select.testing;
003
004import javax.xml.bind.annotation.XmlAccessType;
005import javax.xml.bind.annotation.XmlAccessorType;
006import javax.xml.bind.annotation.XmlElement;
007import javax.xml.bind.annotation.XmlType;
008
009
010/**
011 * <p>Java class for createPreOrderForCitationResponse complex type.
012 * <p/>
013 * <p>The following schema fragment specifies the expected content contained within this class.
014 * <p/>
015 * <pre>
016 * &lt;complexType name="createPreOrderForCitationResponse">
017 *   &lt;complexContent>
018 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019 *       &lt;sequence>
020 *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
021 *       &lt;/sequence>
022 *     &lt;/restriction>
023 *   &lt;/complexContent>
024 * &lt;/complexType>
025 * </pre>
026 */
027@XmlAccessorType(XmlAccessType.FIELD)
028@XmlType(name = "createPreOrderForCitationResponse", propOrder = {
029        "_return"
030})
031public class CreatePreOrderForCitationResponse {
032
033    @XmlElement(name = "return")
034    protected String _return;
035
036    /**
037     * Gets the value of the return property.
038     *
039     * @return possible object is
040     *         {@link String }
041     */
042    public String getReturn() {
043        return _return;
044    }
045
046    /**
047     * Sets the value of the return property.
048     *
049     * @param value allowed object is
050     *              {@link String }
051     */
052    public void setReturn(String value) {
053        this._return = value;
054    }
055
056}