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

checkmarx.wsdl.portal.CxWSResultSummary 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 CxWSResultSummary complex type. * *

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

 * <complexType name="CxWSResultSummary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="QueryId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="QueryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="QueryGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Count" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="Severity" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Cwe" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CxWSResultSummary", propOrder = { "queryId", "queryName", "queryGroupName", "count", "severity", "cwe" }) public class CxWSResultSummary { @XmlElement(name = "QueryId") protected long queryId; @XmlElement(name = "QueryName") protected String queryName; @XmlElement(name = "QueryGroupName") protected String queryGroupName; @XmlElement(name = "Count") protected long count; @XmlElement(name = "Severity") protected int severity; @XmlElement(name = "Cwe") protected long cwe; /** * Gets the value of the queryId property. * */ public long getQueryId() { return queryId; } /** * Sets the value of the queryId property. * */ public void setQueryId(long value) { this.queryId = 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; } /** * Gets the value of the queryGroupName property. * * @return * possible object is * {@link String } * */ public String getQueryGroupName() { return queryGroupName; } /** * Sets the value of the queryGroupName property. * * @param value * allowed object is * {@link String } * */ public void setQueryGroupName(String value) { this.queryGroupName = value; } /** * Gets the value of the count property. * */ public long getCount() { return count; } /** * Sets the value of the count property. * */ public void setCount(long value) { this.count = value; } /** * Gets the value of the severity property. * */ public int getSeverity() { return severity; } /** * Sets the value of the severity property. * */ public void setSeverity(int value) { this.severity = value; } /** * Gets the value of the cwe property. * */ public long getCwe() { return cwe; } /** * Sets the value of the cwe property. * */ public void setCwe(long value) { this.cwe = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy