
wssec.wssec10.EchoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-systests-ws-security Show documentation
Show all versions of cxf-systests-ws-security Show documentation
Apache CXF WS-Security System Tests
package wssec.wssec10;
import javax.annotation.Generated;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="echoResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"echoResult"
})
@XmlRootElement(name = "echoResponse")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:05-04:00", comments = "JAXB RI v2.2.11")
public class EchoResponse {
@XmlElementRef(name = "echoResult", type = JAXBElement.class, required = false)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:05-04:00", comments = "JAXB RI v2.2.11")
protected JAXBElement echoResult;
/**
* Gets the value of the echoResult property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:05-04:00", comments = "JAXB RI v2.2.11")
public JAXBElement getEchoResult() {
return echoResult;
}
/**
* Sets the value of the echoResult property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:05-04:00", comments = "JAXB RI v2.2.11")
public void setEchoResult(JAXBElement value) {
this.echoResult = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy