1 /* 2 * $Id: GetQuote.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.XmlRootElement; 16 import javax.xml.bind.annotation.XmlType; 17 18 19 /** 20 * <p>Java class for anonymous complex type. 21 * 22 * <p>The following schema fragment specifies the expected content contained within this class. 23 * 24 * <pre> 25 * <complexType> 26 * <complexContent> 27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 28 * <sequence> 29 * <element name="symbol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * </sequence> 31 * </restriction> 32 * </complexContent> 33 * </complexType> 34 * </pre> 35 * 36 * 37 */ 38 @XmlAccessorType(XmlAccessType.FIELD) 39 @XmlType(name = "", propOrder = { 40 "symbol" 41 }) 42 @XmlRootElement(name = "GetQuote") 43 public class GetQuote { 44 45 protected String symbol; 46 47 /** 48 * Gets the value of the symbol property. 49 * 50 * @return 51 * possible object is 52 * {@link String } 53 * 54 */ 55 public String getSymbol() { 56 return symbol; 57 } 58 59 /** 60 * Sets the value of the symbol property. 61 * 62 * @param value 63 * allowed object is 64 * {@link String } 65 * 66 */ 67 public void setSymbol(String value) { 68 this.symbol = value; 69 } 70 71 }