checkmarx.wsdl.portal.CxProjectData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CxProjectData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxProjectData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ProjectID" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="SourceType" type="{http://Checkmarx.com}CxProjectSourceType"/>
* <element name="Company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Owner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Group" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxProjectData", propOrder = {
"projectID",
"sourceType",
"company",
"owner",
"projectName",
"group"
})
public class CxProjectData {
@XmlElement(name = "ProjectID")
protected long projectID;
@XmlElement(name = "SourceType", required = true)
protected CxProjectSourceType sourceType;
@XmlElement(name = "Company")
protected String company;
@XmlElement(name = "Owner")
protected String owner;
@XmlElement(name = "ProjectName")
protected String projectName;
@XmlElement(name = "Group")
protected String group;
/**
* Gets the value of the projectID property.
*
*/
public long getProjectID() {
return projectID;
}
/**
* Sets the value of the projectID property.
*
*/
public void setProjectID(long value) {
this.projectID = value;
}
/**
* Gets the value of the sourceType property.
*
* @return
* possible object is
* {@link CxProjectSourceType }
*
*/
public CxProjectSourceType getSourceType() {
return sourceType;
}
/**
* Sets the value of the sourceType property.
*
* @param value
* allowed object is
* {@link CxProjectSourceType }
*
*/
public void setSourceType(CxProjectSourceType value) {
this.sourceType = value;
}
/**
* Gets the value of the company property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompany() {
return company;
}
/**
* Sets the value of the company property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompany(String value) {
this.company = value;
}
/**
* Gets the value of the owner property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOwner(String value) {
this.owner = value;
}
/**
* Gets the value of the projectName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProjectName() {
return projectName;
}
/**
* Sets the value of the projectName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProjectName(String value) {
this.projectName = value;
}
/**
* Gets the value of the group property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGroup() {
return group;
}
/**
* Sets the value of the group property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGroup(String value) {
this.group = value;
}
}