checkmarx.wsdl.portal.ResultStateData 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 ResultStateData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResultStateData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="scanId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="PathId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="projectId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="Remarks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ResultLabelType" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="data" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResultStateData", propOrder = {
"scanId",
"pathId",
"projectId",
"remarks",
"resultLabelType",
"data"
})
public class ResultStateData {
protected long scanId;
@XmlElement(name = "PathId")
protected long pathId;
protected long projectId;
@XmlElement(name = "Remarks")
protected String remarks;
@XmlElement(name = "ResultLabelType")
protected int resultLabelType;
protected String data;
/**
* 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 pathId property.
*
*/
public long getPathId() {
return pathId;
}
/**
* Sets the value of the pathId property.
*
*/
public void setPathId(long value) {
this.pathId = value;
}
/**
* 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 remarks property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRemarks() {
return remarks;
}
/**
* Sets the value of the remarks property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRemarks(String value) {
this.remarks = value;
}
/**
* Gets the value of the resultLabelType property.
*
*/
public int getResultLabelType() {
return resultLabelType;
}
/**
* Sets the value of the resultLabelType property.
*
*/
public void setResultLabelType(int value) {
this.resultLabelType = value;
}
/**
* Gets the value of the data property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getData() {
return data;
}
/**
* Sets the value of the data property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setData(String value) {
this.data = value;
}
}