All Downloads are FREE. Search and download functionalities are using the official Maven repository.

checkmarx.wsdl.portal.WebClientPendingUser Maven / Gradle / Ivy

There is a newer version: 0.4.47
Show newest version
//
// 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.06.07 at 11:08:45 PM EST
//


package checkmarx.wsdl.portal;

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 WebClientPendingUser complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="WebClientPendingUser">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="FirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Password" 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="JobTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="UserName" 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="CompanyID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CompanyName" 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="Groups" type="{http://Checkmarx.com}ArrayOfGroup" minOccurs="0"/>
 *         <element name="CreatedDate" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
 *         <element name="AuditUser" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WebClientPendingUser", propOrder = { "id", "firstName", "lastName", "password", "email", "jobTitle", "userName", "phone", "cellPhone", "skype", "companyID", "companyName", "country", "groups", "createdDate", "auditUser" }) public class WebClientPendingUser { @XmlElement(name = "ID") protected long id; @XmlElement(name = "FirstName") protected String firstName; @XmlElement(name = "LastName") protected String lastName; @XmlElement(name = "Password") protected String password; @XmlElement(name = "Email") protected String email; @XmlElement(name = "JobTitle") protected String jobTitle; @XmlElement(name = "UserName") protected String userName; @XmlElement(name = "Phone") protected String phone; @XmlElement(name = "CellPhone") protected String cellPhone; @XmlElement(name = "Skype") protected String skype; @XmlElement(name = "CompanyID") protected String companyID; @XmlElement(name = "CompanyName") protected String companyName; @XmlElement(name = "Country") protected String country; @XmlElement(name = "Groups") protected ArrayOfGroup groups; @XmlElement(name = "CreatedDate") protected CxDateTime createdDate; @XmlElement(name = "AuditUser") protected boolean auditUser; /** * Gets the value of the id property. * */ public long getID() { return id; } /** * Sets the value of the id property. * */ public void setID(long value) { this.id = 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 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 password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = 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 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 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 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 companyID property. * * @return * possible object is * {@link String } * */ public String getCompanyID() { return companyID; } /** * Sets the value of the companyID property. * * @param value * allowed object is * {@link String } * */ public void setCompanyID(String value) { this.companyID = value; } /** * Gets the value of the companyName property. * * @return * possible object is * {@link String } * */ public String getCompanyName() { return companyName; } /** * Sets the value of the companyName property. * * @param value * allowed object is * {@link String } * */ public void setCompanyName(String value) { this.companyName = 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 groups property. * * @return * possible object is * {@link ArrayOfGroup } * */ public ArrayOfGroup getGroups() { return groups; } /** * Sets the value of the groups property. * * @param value * allowed object is * {@link ArrayOfGroup } * */ public void setGroups(ArrayOfGroup value) { this.groups = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link CxDateTime } * */ public CxDateTime getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link CxDateTime } * */ public void setCreatedDate(CxDateTime value) { this.createdDate = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy