1 /* 2 * $Id: GetQuoteResponse.java 19191 2010-08-25 21:05:23Z tcarlson $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 11 package net.webservicex; 12 13 import javax.xml.bind.annotation.XmlAccessType; 14 import javax.xml.bind.annotation.XmlAccessorType; 15 import javax.xml.bind.annotation.XmlElement; 16 import javax.xml.bind.annotation.XmlRootElement; 17 import javax.xml.bind.annotation.XmlType; 18 19 20 /** 21 * <p>Java class for anonymous complex type. 22 * 23 * <p>The following schema fragment specifies the expected content contained within this class. 24 * 25 * <pre> 26 * <complexType> 27 * <complexContent> 28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 29 * <sequence> 30 * <element name="GetQuoteResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * </sequence> 32 * </restriction> 33 * </complexContent> 34 * </complexType> 35 * </pre> 36 * 37 * 38 */ 39 @XmlAccessorType(XmlAccessType.FIELD) 40 @XmlType(name = "", propOrder = { 41 "getQuoteResult" 42 }) 43 @XmlRootElement(name = "GetQuoteResponse") 44 public class GetQuoteResponse { 45 46 @XmlElement(name = "GetQuoteResult") 47 protected String getQuoteResult; 48 49 /** 50 * Gets the value of the getQuoteResult property. 51 * 52 * @return 53 * possible object is 54 * {@link String } 55 * 56 */ 57 public String getGetQuoteResult() { 58 return getQuoteResult; 59 } 60 61 /** 62 * Sets the value of the getQuoteResult property. 63 * 64 * @param value 65 * allowed object is 66 * {@link String } 67 * 68 */ 69 public void setGetQuoteResult(String value) { 70 this.getQuoteResult = value; 71 } 72 73 }