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
881 B
37 lines
881 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 = "SendDeliveryDateToPLM", namespace = "http://teamcenter.com.ysr/")
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "SendDeliveryDateToPLM", namespace = "http://teamcenter.com.ysr/")
|
|
public class SendDeliveryDateToPLM {
|
|
|
|
@XmlElement(name = "arg0", namespace = "")
|
|
private String arg0;
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
* returns String
|
|
*/
|
|
public String getArg0() {
|
|
return this.arg0;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param arg0
|
|
* the value for the arg0 property
|
|
*/
|
|
public void setArg0(String arg0) {
|
|
this.arg0 = arg0;
|
|
}
|
|
|
|
}
|