All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmlsoap.ping.PingResponseBody Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version

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 PingResponseBody complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PingResponseBody">
 *   <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 = "PingResponseBody", propOrder = { "scenario", "origin", "text" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:48-04:00", comments = "JAXB RI v2.2.11") public class PingResponseBody { @XmlElement(required = true, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-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-03-23T02:02:48-04:00", comments = "JAXB RI v2.2.11") public void setText(String value) { this.text = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy