checkmarx.wsdl.portal.CxWSResponseCompaniesLicenseData 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 CxWSResponseCompaniesLicenseData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResponseCompaniesLicenseData">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSResponseUsersLicenseData">
* <sequence>
* <element name="MaxCompanyManagers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="CurrentCompanyManagers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="MaxCompanyManagersWithAudit" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="CurrentCompanyManagersWithAudit" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="MaxCompanies" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="CurrentCompanies" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResponseCompaniesLicenseData", propOrder = {
"maxCompanyManagers",
"currentCompanyManagers",
"maxCompanyManagersWithAudit",
"currentCompanyManagersWithAudit",
"maxCompanies",
"currentCompanies"
})
@XmlSeeAlso({
CxWsResponseCompanyProperties.class,
CxWSResponseSPLicenseData.class
})
public class CxWSResponseCompaniesLicenseData
extends CxWSResponseUsersLicenseData
{
@XmlElement(name = "MaxCompanyManagers")
protected int maxCompanyManagers;
@XmlElement(name = "CurrentCompanyManagers")
protected int currentCompanyManagers;
@XmlElement(name = "MaxCompanyManagersWithAudit")
protected int maxCompanyManagersWithAudit;
@XmlElement(name = "CurrentCompanyManagersWithAudit")
protected int currentCompanyManagersWithAudit;
@XmlElement(name = "MaxCompanies")
protected int maxCompanies;
@XmlElement(name = "CurrentCompanies")
protected int currentCompanies;
/**
* Gets the value of the maxCompanyManagers property.
*
*/
public int getMaxCompanyManagers() {
return maxCompanyManagers;
}
/**
* Sets the value of the maxCompanyManagers property.
*
*/
public void setMaxCompanyManagers(int value) {
this.maxCompanyManagers = value;
}
/**
* Gets the value of the currentCompanyManagers property.
*
*/
public int getCurrentCompanyManagers() {
return currentCompanyManagers;
}
/**
* Sets the value of the currentCompanyManagers property.
*
*/
public void setCurrentCompanyManagers(int value) {
this.currentCompanyManagers = value;
}
/**
* Gets the value of the maxCompanyManagersWithAudit property.
*
*/
public int getMaxCompanyManagersWithAudit() {
return maxCompanyManagersWithAudit;
}
/**
* Sets the value of the maxCompanyManagersWithAudit property.
*
*/
public void setMaxCompanyManagersWithAudit(int value) {
this.maxCompanyManagersWithAudit = value;
}
/**
* Gets the value of the currentCompanyManagersWithAudit property.
*
*/
public int getCurrentCompanyManagersWithAudit() {
return currentCompanyManagersWithAudit;
}
/**
* Sets the value of the currentCompanyManagersWithAudit property.
*
*/
public void setCurrentCompanyManagersWithAudit(int value) {
this.currentCompanyManagersWithAudit = value;
}
/**
* Gets the value of the maxCompanies property.
*
*/
public int getMaxCompanies() {
return maxCompanies;
}
/**
* Sets the value of the maxCompanies property.
*
*/
public void setMaxCompanies(int value) {
this.maxCompanies = value;
}
/**
* Gets the value of the currentCompanies property.
*
*/
public int getCurrentCompanies() {
return currentCompanies;
}
/**
* Sets the value of the currentCompanies property.
*
*/
public void setCurrentCompanies(int value) {
this.currentCompanies = value;
}
}