org.gs4tr.projectdirector.model.dto.xsd.DocumentTicket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globallink-connect-api Show documentation
Show all versions of globallink-connect-api Show documentation
GlobalLink Connect Java is a library to connect your system to GlobalLink Project Director SOAP API.
The newest version!
package org.gs4tr.projectdirector.model.dto.xsd;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DocumentTicket complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DocumentTicket">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="submissionTicket" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ticketId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DocumentTicket", propOrder = {
"submissionTicket",
"ticketId"
})
public class DocumentTicket {
@XmlElement(required = true, nillable = true)
protected String submissionTicket;
@XmlElement(required = true, nillable = true)
protected String ticketId;
/**
* Gets the value of the submissionTicket property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubmissionTicket() {
return submissionTicket;
}
/**
* Sets the value of the submissionTicket property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubmissionTicket(String value) {
this.submissionTicket = value;
}
/**
* Gets the value of the ticketId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTicketId() {
return ticketId;
}
/**
* Sets the value of the ticketId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTicketId(String value) {
this.ticketId = value;
}
}