
wssec.wssc.PingResponse 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.wssc;
import javax.annotation.Generated;
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;
import org.xmlsoap.ping.PingResponseBody;
/**
* 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 ref="{http://xmlsoap.org/Ping}PingResponse" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"pingResponse"
})
@XmlRootElement(name = "PingResponse")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-10-14T02:35:19-04:00", comments = "JAXB RI v2.2.11")
public class PingResponse {
@XmlElement(name = "PingResponse", namespace = "http://xmlsoap.org/Ping")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-10-14T02:35:19-04:00", comments = "JAXB RI v2.2.11")
protected PingResponseBody pingResponse;
/**
* Gets the value of the pingResponse property.
*
* @return
* possible object is
* {@link PingResponseBody }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-10-14T02:35:19-04:00", comments = "JAXB RI v2.2.11")
public PingResponseBody getPingResponse() {
return pingResponse;
}
/**
* Sets the value of the pingResponse property.
*
* @param value
* allowed object is
* {@link PingResponseBody }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-10-14T02:35:19-04:00", comments = "JAXB RI v2.2.11")
public void setPingResponse(PingResponseBody value) {
this.pingResponse = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy