You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
932 B
37 lines
932 B
|
|
package ysr.com.teamcenter.jaxws;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
@XmlRootElement(name = "SendDeliveryDateToPLMResponse", namespace = "http://teamcenter.com.ysr/")
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "SendDeliveryDateToPLMResponse", namespace = "http://teamcenter.com.ysr/")
|
|
public class SendDeliveryDateToPLMResponse {
|
|
|
|
@XmlElement(name = "return", namespace = "")
|
|
private String _return;
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
* returns String
|
|
*/
|
|
public String getReturn() {
|
|
return this._return;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param _return
|
|
* the value for the _return property
|
|
*/
|
|
public void setReturn(String _return) {
|
|
this._return = _return;
|
|
}
|
|
|
|
}
|