
org.xmlsoap.ping.Ping 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 org.xmlsoap.ping;
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.XmlType;
/**
* Java class for ping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ping">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="scenario" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="origin" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ping", propOrder = {
"scenario",
"origin",
"text"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public class Ping {
@XmlElement(required = true, nillable = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
protected String scenario;
@XmlElement(required = true, nillable = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
protected String origin;
@XmlElement(required = true, nillable = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
protected String text;
/**
* Gets the value of the scenario property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public String getScenario() {
return scenario;
}
/**
* Sets the value of the scenario property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public void setScenario(String value) {
this.scenario = value;
}
/**
* Gets the value of the origin property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public String getOrigin() {
return origin;
}
/**
* Sets the value of the origin property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public void setOrigin(String value) {
this.origin = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-07-26T01:15:06-04:00", comments = "JAXB RI v2.2.11")
public void setText(String value) {
this.text = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy