Coverage Report - net.webservicex.GetQuoteResponse
 
Classes in this File Line Coverage Branch Coverage Complexity
GetQuoteResponse
0%
0/4
N/A
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.XmlElement;
 12  
 import javax.xml.bind.annotation.XmlRootElement;
 13  
 import javax.xml.bind.annotation.XmlType;
 14  
 
 15  
 
 16  
 /**
 17  
  * <p>Java class for anonymous complex type.
 18  
  * 
 19  
  * <p>The following schema fragment specifies the expected content contained within this class.
 20  
  * 
 21  
  * <pre>
 22  
  * &lt;complexType>
 23  
  *   &lt;complexContent>
 24  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 25  
  *       &lt;sequence>
 26  
  *         &lt;element name="GetQuoteResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 27  
  *       &lt;/sequence>
 28  
  *     &lt;/restriction>
 29  
  *   &lt;/complexContent>
 30  
  * &lt;/complexType>
 31  
  * </pre>
 32  
  * 
 33  
  * 
 34  
  */
 35  
 @XmlAccessorType(XmlAccessType.FIELD)
 36  
 @XmlType(name = "", propOrder = {
 37  
     "getQuoteResult"
 38  
 })
 39  
 @XmlRootElement(name = "GetQuoteResponse")
 40  0
 public class GetQuoteResponse {
 41  
 
 42  
     @XmlElement(name = "GetQuoteResult")
 43  
     protected String getQuoteResult;
 44  
 
 45  
     /**
 46  
      * Gets the value of the getQuoteResult property.
 47  
      * 
 48  
      * @return
 49  
      *     possible object is
 50  
      *     {@link String }
 51  
      *     
 52  
      */
 53  
     public String getGetQuoteResult() {
 54  0
         return getQuoteResult;
 55  
     }
 56  
 
 57  
     /**
 58  
      * Sets the value of the getQuoteResult property.
 59  
      * 
 60  
      * @param value
 61  
      *     allowed object is
 62  
      *     {@link String }
 63  
      *     
 64  
      */
 65  
     public void setGetQuoteResult(String value) {
 66  0
         this.getQuoteResult = value;
 67  0
     }
 68  
 
 69  
 }