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

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

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

 * <complexType name="CxWSResponseScanCompareSummary">
 *   <complexContent>
 *     <extension base="{http://Checkmarx.com}CxWSBasicRepsonse">
 *       <sequence>
 *         <element name="Total" type="{http://Checkmarx.com}CxWsScanCompareCount" minOccurs="0"/>
 *         <element name="High" type="{http://Checkmarx.com}CxWsScanCompareCount" minOccurs="0"/>
 *         <element name="Medium" type="{http://Checkmarx.com}CxWsScanCompareCount" minOccurs="0"/>
 *         <element name="Low" type="{http://Checkmarx.com}CxWsScanCompareCount" minOccurs="0"/>
 *         <element name="Info" type="{http://Checkmarx.com}CxWsScanCompareCount" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CxWSResponseScanCompareSummary", propOrder = { "total", "high", "medium", "low", "info" }) public class CxWSResponseScanCompareSummary extends CxWSBasicRepsonse { @XmlElement(name = "Total") protected CxWsScanCompareCount total; @XmlElement(name = "High") protected CxWsScanCompareCount high; @XmlElement(name = "Medium") protected CxWsScanCompareCount medium; @XmlElement(name = "Low") protected CxWsScanCompareCount low; @XmlElement(name = "Info") protected CxWsScanCompareCount info; /** * Gets the value of the total property. * * @return * possible object is * {@link CxWsScanCompareCount } * */ public CxWsScanCompareCount getTotal() { return total; } /** * Sets the value of the total property. * * @param value * allowed object is * {@link CxWsScanCompareCount } * */ public void setTotal(CxWsScanCompareCount value) { this.total = value; } /** * Gets the value of the high property. * * @return * possible object is * {@link CxWsScanCompareCount } * */ public CxWsScanCompareCount getHigh() { return high; } /** * Sets the value of the high property. * * @param value * allowed object is * {@link CxWsScanCompareCount } * */ public void setHigh(CxWsScanCompareCount value) { this.high = value; } /** * Gets the value of the medium property. * * @return * possible object is * {@link CxWsScanCompareCount } * */ public CxWsScanCompareCount getMedium() { return medium; } /** * Sets the value of the medium property. * * @param value * allowed object is * {@link CxWsScanCompareCount } * */ public void setMedium(CxWsScanCompareCount value) { this.medium = value; } /** * Gets the value of the low property. * * @return * possible object is * {@link CxWsScanCompareCount } * */ public CxWsScanCompareCount getLow() { return low; } /** * Sets the value of the low property. * * @param value * allowed object is * {@link CxWsScanCompareCount } * */ public void setLow(CxWsScanCompareCount value) { this.low = value; } /** * Gets the value of the info property. * * @return * possible object is * {@link CxWsScanCompareCount } * */ public CxWsScanCompareCount getInfo() { return info; } /** * Sets the value of the info property. * * @param value * allowed object is * {@link CxWsScanCompareCount } * */ public void setInfo(CxWsScanCompareCount value) { this.info = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy