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

checkmarx.wsdl.portal.CxWSResponseServerManagersLicenseData 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.11.17 at 10:51:56 PM EST
//


package checkmarx.wsdl.portal;

import javax.xml.bind.annotation.*;


/**
 * 

Java class for CxWSResponseServerManagersLicenseData complex type. * *

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

 * <complexType name="CxWSResponseServerManagersLicenseData">
 *   <complexContent>
 *     <extension base="{http://Checkmarx.com}CxWSResponseSPLicenseData">
 *       <sequence>
 *         <element name="MaxServerManagers" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="CurrentServerManagers" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="MaxServerManagersWithAudit" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="CurrentServerManagersWithAudit" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CxWSResponseServerManagersLicenseData", propOrder = { "maxServerManagers", "currentServerManagers", "maxServerManagersWithAudit", "currentServerManagersWithAudit" }) @XmlSeeAlso({ CxWSResponseServerLicenseData.class }) public class CxWSResponseServerManagersLicenseData extends CxWSResponseSPLicenseData { @XmlElement(name = "MaxServerManagers") protected int maxServerManagers; @XmlElement(name = "CurrentServerManagers") protected int currentServerManagers; @XmlElement(name = "MaxServerManagersWithAudit") protected int maxServerManagersWithAudit; @XmlElement(name = "CurrentServerManagersWithAudit") protected int currentServerManagersWithAudit; /** * Gets the value of the maxServerManagers property. * */ public int getMaxServerManagers() { return maxServerManagers; } /** * Sets the value of the maxServerManagers property. * */ public void setMaxServerManagers(int value) { this.maxServerManagers = value; } /** * Gets the value of the currentServerManagers property. * */ public int getCurrentServerManagers() { return currentServerManagers; } /** * Sets the value of the currentServerManagers property. * */ public void setCurrentServerManagers(int value) { this.currentServerManagers = value; } /** * Gets the value of the maxServerManagersWithAudit property. * */ public int getMaxServerManagersWithAudit() { return maxServerManagersWithAudit; } /** * Sets the value of the maxServerManagersWithAudit property. * */ public void setMaxServerManagersWithAudit(int value) { this.maxServerManagersWithAudit = value; } /** * Gets the value of the currentServerManagersWithAudit property. * */ public int getCurrentServerManagersWithAudit() { return currentServerManagersWithAudit; } /** * Sets the value of the currentServerManagersWithAudit property. * */ public void setCurrentServerManagersWithAudit(int value) { this.currentServerManagersWithAudit = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy