checkmarx.wsdl.portal.CxWSResponseUsersLicenseData 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.*;
/**
* Java class for CxWSResponseUsersLicenseData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResponseUsersLicenseData">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSBasicRepsonse">
* <sequence>
* <element name="MaxReviewers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="CurrentReviewers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="MaxScanners" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="CurrentScanners" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResponseUsersLicenseData", propOrder = {
"maxReviewers",
"currentReviewers",
"maxScanners",
"currentScanners"
})
@XmlSeeAlso({
CxWSResponseCompaniesLicenseData.class
})
public class CxWSResponseUsersLicenseData
extends CxWSBasicRepsonse
{
@XmlElement(name = "MaxReviewers")
protected int maxReviewers;
@XmlElement(name = "CurrentReviewers")
protected int currentReviewers;
@XmlElement(name = "MaxScanners")
protected int maxScanners;
@XmlElement(name = "CurrentScanners")
protected int currentScanners;
/**
* Gets the value of the maxReviewers property.
*
*/
public int getMaxReviewers() {
return maxReviewers;
}
/**
* Sets the value of the maxReviewers property.
*
*/
public void setMaxReviewers(int value) {
this.maxReviewers = value;
}
/**
* Gets the value of the currentReviewers property.
*
*/
public int getCurrentReviewers() {
return currentReviewers;
}
/**
* Sets the value of the currentReviewers property.
*
*/
public void setCurrentReviewers(int value) {
this.currentReviewers = value;
}
/**
* Gets the value of the maxScanners property.
*
*/
public int getMaxScanners() {
return maxScanners;
}
/**
* Sets the value of the maxScanners property.
*
*/
public void setMaxScanners(int value) {
this.maxScanners = value;
}
/**
* Gets the value of the currentScanners property.
*
*/
public int getCurrentScanners() {
return currentScanners;
}
/**
* Sets the value of the currentScanners property.
*
*/
public void setCurrentScanners(int value) {
this.currentScanners = value;
}
}