1 2 package org.kuali.ole.select.testing; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlElement; 7 import javax.xml.bind.annotation.XmlType; 8 9 10 /** 11 * <p>Java class for createPreOrderForCitationResponse complex type. 12 * <p/> 13 * <p>The following schema fragment specifies the expected content contained within this class. 14 * <p/> 15 * <pre> 16 * <complexType name="createPreOrderForCitationResponse"> 17 * <complexContent> 18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 19 * <sequence> 20 * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 21 * </sequence> 22 * </restriction> 23 * </complexContent> 24 * </complexType> 25 * </pre> 26 */ 27 @XmlAccessorType(XmlAccessType.FIELD) 28 @XmlType(name = "createPreOrderForCitationResponse", propOrder = { 29 "_return" 30 }) 31 public class CreatePreOrderForCitationResponse { 32 33 @XmlElement(name = "return") 34 protected String _return; 35 36 /** 37 * Gets the value of the return property. 38 * 39 * @return possible object is 40 * {@link String } 41 */ 42 public String getReturn() { 43 return _return; 44 } 45 46 /** 47 * Sets the value of the return property. 48 * 49 * @param value allowed object is 50 * {@link String } 51 */ 52 public void setReturn(String value) { 53 this._return = value; 54 } 55 56 }