checkmarx.wsdl.portal.ProfileData Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.*;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for ProfileData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProfileData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="UserName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="UserPreferedLanguageLCID" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="JobTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="CellPhone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Skype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AuditUser" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="LastLoginDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="UserTeams" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProfileData", propOrder = {
"userName",
"firstName",
"userPreferedLanguageLCID",
"lastName",
"jobTitle",
"email",
"phone",
"cellPhone",
"skype",
"country",
"auditUser",
"lastLoginDate",
"userTeams"
})
public class ProfileData {
@XmlElement(name = "UserName")
protected String userName;
@XmlElement(name = "FirstName")
protected String firstName;
@XmlElement(name = "UserPreferedLanguageLCID")
protected int userPreferedLanguageLCID;
@XmlElement(name = "LastName")
protected String lastName;
@XmlElement(name = "JobTitle")
protected String jobTitle;
@XmlElement(name = "Email")
protected String email;
@XmlElement(name = "Phone")
protected String phone;
@XmlElement(name = "CellPhone")
protected String cellPhone;
@XmlElement(name = "Skype")
protected String skype;
@XmlElement(name = "Country")
protected String country;
@XmlElement(name = "AuditUser")
protected boolean auditUser;
@XmlElement(name = "LastLoginDate", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastLoginDate;
@XmlElement(name = "UserTeams")
protected String userTeams;
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserName(String value) {
this.userName = value;
}
/**
* Gets the value of the firstName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstName() {
return firstName;
}
/**
* Sets the value of the firstName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstName(String value) {
this.firstName = value;
}
/**
* Gets the value of the userPreferedLanguageLCID property.
*
*/
public int getUserPreferedLanguageLCID() {
return userPreferedLanguageLCID;
}
/**
* Sets the value of the userPreferedLanguageLCID property.
*
*/
public void setUserPreferedLanguageLCID(int value) {
this.userPreferedLanguageLCID = value;
}
/**
* Gets the value of the lastName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastName() {
return lastName;
}
/**
* Sets the value of the lastName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastName(String value) {
this.lastName = value;
}
/**
* Gets the value of the jobTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobTitle() {
return jobTitle;
}
/**
* Sets the value of the jobTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobTitle(String value) {
this.jobTitle = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the phone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhone() {
return phone;
}
/**
* Sets the value of the phone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPhone(String value) {
this.phone = value;
}
/**
* Gets the value of the cellPhone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCellPhone() {
return cellPhone;
}
/**
* Sets the value of the cellPhone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCellPhone(String value) {
this.cellPhone = value;
}
/**
* Gets the value of the skype property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSkype() {
return skype;
}
/**
* Sets the value of the skype property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSkype(String value) {
this.skype = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
/**
* Gets the value of the auditUser property.
*
*/
public boolean isAuditUser() {
return auditUser;
}
/**
* Sets the value of the auditUser property.
*
*/
public void setAuditUser(boolean value) {
this.auditUser = value;
}
/**
* Gets the value of the lastLoginDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastLoginDate() {
return lastLoginDate;
}
/**
* Sets the value of the lastLoginDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastLoginDate(XMLGregorianCalendar value) {
this.lastLoginDate = value;
}
/**
* Gets the value of the userTeams property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserTeams() {
return userTeams;
}
/**
* Sets the value of the userTeams property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserTeams(String value) {
this.userTeams = value;
}
}