checkmarx.wsdl.portal.CxWSResultPathDisplayDetails 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 CxWSResultPathDisplayDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResultPathDisplayDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ProjectId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ScanId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ScanDate" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* <element name="PathIds" type="{http://Checkmarx.com}ArrayOfLong" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResultPathDisplayDetails", propOrder = {
"projectId",
"projectName",
"scanId",
"scanDate",
"pathIds"
})
public class CxWSResultPathDisplayDetails {
@XmlElement(name = "ProjectId")
protected long projectId;
@XmlElement(name = "ProjectName")
protected String projectName;
@XmlElement(name = "ScanId")
protected long scanId;
@XmlElement(name = "ScanDate")
protected CxDateTime scanDate;
@XmlElement(name = "PathIds")
protected ArrayOfLong pathIds;
/**
* 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 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 scanId property.
*
*/
public long getScanId() {
return scanId;
}
/**
* Sets the value of the scanId property.
*
*/
public void setScanId(long value) {
this.scanId = value;
}
/**
* Gets the value of the scanDate property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getScanDate() {
return scanDate;
}
/**
* Sets the value of the scanDate property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setScanDate(CxDateTime value) {
this.scanDate = value;
}
/**
* Gets the value of the pathIds property.
*
* @return
* possible object is
* {@link ArrayOfLong }
*
*/
public ArrayOfLong getPathIds() {
return pathIds;
}
/**
* Sets the value of the pathIds property.
*
* @param value
* allowed object is
* {@link ArrayOfLong }
*
*/
public void setPathIds(ArrayOfLong value) {
this.pathIds = value;
}
}