org.gs4tr.projectdirector.model.dto.xsd.ProjectAClient 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 ProjectAClient complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProjectAClient">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="parentOrganization" type="{http://dto.model.projectdirector.gs4tr.org/xsd}Organization"/>
* <element name="ticket" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProjectAClient", propOrder = {
"enabled",
"name",
"parentOrganization",
"ticket"
})
public class ProjectAClient {
@XmlElement(required = true, type = Boolean.class, nillable = true)
protected Boolean enabled;
@XmlElement(required = true, nillable = true)
protected String name;
@XmlElement(required = true, nillable = true)
protected Organization parentOrganization;
@XmlElement(required = true, nillable = true)
protected String ticket;
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnabled(Boolean value) {
this.enabled = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the parentOrganization property.
*
* @return
* possible object is
* {@link Organization }
*
*/
public Organization getParentOrganization() {
return parentOrganization;
}
/**
* Sets the value of the parentOrganization property.
*
* @param value
* allowed object is
* {@link Organization }
*
*/
public void setParentOrganization(Organization value) {
this.parentOrganization = value;
}
/**
* Gets the value of the ticket property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTicket() {
return ticket;
}
/**
* Sets the value of the ticket property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTicket(String value) {
this.ticket = value;
}
}