checkmarx.wsdl.portal.CxWSSingleResultCompareData 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.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 CxWSSingleResultCompareData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSSingleResultCompareData">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSSingleResultData">
* <sequence>
* <element name="ScanId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ComparedToScanId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ComparedToScanPathId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="QueryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSSingleResultCompareData", propOrder = {
"scanId",
"comparedToScanId",
"comparedToScanPathId",
"queryName"
})
public class CxWSSingleResultCompareData
extends CxWSSingleResultData
{
@XmlElement(name = "ScanId")
protected long scanId;
@XmlElement(name = "ComparedToScanId")
protected long comparedToScanId;
@XmlElement(name = "ComparedToScanPathId")
protected long comparedToScanPathId;
@XmlElement(name = "QueryName")
protected String queryName;
/**
* 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 comparedToScanId property.
*
*/
public long getComparedToScanId() {
return comparedToScanId;
}
/**
* Sets the value of the comparedToScanId property.
*
*/
public void setComparedToScanId(long value) {
this.comparedToScanId = value;
}
/**
* Gets the value of the comparedToScanPathId property.
*
*/
public long getComparedToScanPathId() {
return comparedToScanPathId;
}
/**
* Sets the value of the comparedToScanPathId property.
*
*/
public void setComparedToScanPathId(long value) {
this.comparedToScanPathId = value;
}
/**
* Gets the value of the queryName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQueryName() {
return queryName;
}
/**
* Sets the value of the queryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQueryName(String value) {
this.queryName = value;
}
}