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