Files
unisa_prog_reti_javaee7_201…/test5_ws_client/ModifymessageResponse.java

63 lines
1.4 KiB
Java

package test5_ws_client;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for modifymessageResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="modifymessageResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://test5_ws/}objectToPass" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "modifymessageResponse", propOrder = {
"_return"
})
public class ModifymessageResponse {
@XmlElement(name = "return")
protected ObjectToPass _return;
/**
* Gets the value of the return property.
*
* @return
* possible object is
* {@link ObjectToPass }
*
*/
public ObjectToPass getReturn() {
return _return;
}
/**
* Sets the value of the return property.
*
* @param value
* allowed object is
* {@link ObjectToPass }
*
*/
public void setReturn(ObjectToPass value) {
this._return = value;
}
}