org.gs4tr.projectdirector.model.dto.xsd.TiUserInfo Maven / Gradle / Ivy
Show all versions of globallink-connect-api Show documentation
package org.gs4tr.projectdirector.model.dto.xsd;
import java.util.ArrayList;
import java.util.List;
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 TiUserInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TiUserInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="languageDirections" type="{http://dto.model.projectdirector.gs4tr.org/xsd}LanguageDirection" maxOccurs="unbounded" minOccurs="0"/>
* <element name="organizationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="projectRoles" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="projectTicket" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="systemRoles" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vendorId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TiUserInfo", propOrder = {
"languageDirections",
"organizationId",
"projectRoles",
"projectTicket",
"systemRoles",
"vendorId"
})
public class TiUserInfo {
@XmlElement(nillable = true)
protected List languageDirections;
@XmlElement(required = true, type = Long.class, nillable = true)
protected Long organizationId;
@XmlElement(nillable = true)
protected List projectRoles;
@XmlElement(nillable = true)
protected List projectTicket;
@XmlElement(nillable = true)
protected List systemRoles;
@XmlElement(required = true, type = Long.class, nillable = true)
protected Long vendorId;
/**
* Gets the value of the languageDirections property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the languageDirections property.
*
*
* For example, to add a new item, do as follows:
*
* getLanguageDirections().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LanguageDirection }
*
*
*/
public List getLanguageDirections() {
if (languageDirections == null) {
languageDirections = new ArrayList();
}
return this.languageDirections;
}
/**
* Gets the value of the organizationId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getOrganizationId() {
return organizationId;
}
/**
* Sets the value of the organizationId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setOrganizationId(Long value) {
this.organizationId = value;
}
/**
* Gets the value of the projectRoles property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the projectRoles property.
*
*
* For example, to add a new item, do as follows:
*
* getProjectRoles().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getProjectRoles() {
if (projectRoles == null) {
projectRoles = new ArrayList();
}
return this.projectRoles;
}
/**
* Gets the value of the projectTicket property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the projectTicket property.
*
*
* For example, to add a new item, do as follows:
*
* getProjectTicket().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getProjectTicket() {
if (projectTicket == null) {
projectTicket = new ArrayList();
}
return this.projectTicket;
}
/**
* Gets the value of the systemRoles property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the systemRoles property.
*
*
* For example, to add a new item, do as follows:
*
* getSystemRoles().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSystemRoles() {
if (systemRoles == null) {
systemRoles = new ArrayList();
}
return this.systemRoles;
}
/**
* Gets the value of the vendorId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getVendorId() {
return vendorId;
}
/**
* Sets the value of the vendorId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setVendorId(Long value) {
this.vendorId = value;
}
}