SOA/NumberConversion/target/generated-sources/cxf/fr/insa/soap/wsdltojava/NumberToDollarsResponse.java
2024-11-29 14:52:42 +01:00

64 lines
1.7 KiB
Java

package fr.insa.soap.wsdltojava;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Clase Java para anonymous complex type.
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NumberToDollarsResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"numberToDollarsResult"
})
@XmlRootElement(name = "NumberToDollarsResponse")
public class NumberToDollarsResponse {
@XmlElement(name = "NumberToDollarsResult", required = true)
protected String numberToDollarsResult;
/**
* Obtiene el valor de la propiedad numberToDollarsResult.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNumberToDollarsResult() {
return numberToDollarsResult;
}
/**
* Define el valor de la propiedad numberToDollarsResult.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNumberToDollarsResult(String value) {
this.numberToDollarsResult = value;
}
}