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

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


package org.xmlsoap.ping;

import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") public class PingResponseBody { @XmlElement(required = true, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") protected String scenario; @XmlElement(required = true, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") protected String origin; @XmlElement(required = true, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") protected String text; /** * Gets the value of the scenario property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") 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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") 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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") 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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") 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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") 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", comments = "JAXB RI v3.0.2", date = "2023-09-13T13:30:51-04:00") public void setText(String value) { this.text = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy