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