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

org.apache.cxf.systests.java2ws.SayHiResponse Maven / Gradle / Ivy

The newest version!

package org.apache.cxf.systests.java2ws;

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 sayHiResponse complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sayHiResponse", propOrder = { "_return" }) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public class SayHiResponse { @XmlElement(name = "return") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") protected String _return; /** * Gets the value of the return property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public String getReturn() { return _return; } /** * Sets the value of the return property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public void setReturn(String value) { this._return = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy