checkmarx.wsdl.portal.CreateNewCompany 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.06.07 at 11:08:45 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.*;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sessionID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ParentSP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="newTCompanyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="companyManagers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="scanners" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="reviewers" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="allowActions" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ldapGroupMappings" type="{http://Checkmarx.com}ArrayOfCxWSLdapGroupMapping" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sessionID",
"parentSP",
"newTCompanyName",
"companyManagers",
"scanners",
"reviewers",
"allowActions",
"ldapGroupMappings"
})
@XmlRootElement(name = "CreateNewCompany")
public class CreateNewCompany {
protected String sessionID;
@XmlElement(name = "ParentSP")
protected String parentSP;
protected String newTCompanyName;
protected int companyManagers;
protected int scanners;
protected int reviewers;
protected boolean allowActions;
protected ArrayOfCxWSLdapGroupMapping ldapGroupMappings;
/**
* Gets the value of the sessionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionID() {
return sessionID;
}
/**
* Sets the value of the sessionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionID(String value) {
this.sessionID = value;
}
/**
* Gets the value of the parentSP property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParentSP() {
return parentSP;
}
/**
* Sets the value of the parentSP property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParentSP(String value) {
this.parentSP = value;
}
/**
* Gets the value of the newTCompanyName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewTCompanyName() {
return newTCompanyName;
}
/**
* Sets the value of the newTCompanyName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewTCompanyName(String value) {
this.newTCompanyName = value;
}
/**
* Gets the value of the companyManagers property.
*
*/
public int getCompanyManagers() {
return companyManagers;
}
/**
* Sets the value of the companyManagers property.
*
*/
public void setCompanyManagers(int value) {
this.companyManagers = value;
}
/**
* Gets the value of the scanners property.
*
*/
public int getScanners() {
return scanners;
}
/**
* Sets the value of the scanners property.
*
*/
public void setScanners(int value) {
this.scanners = value;
}
/**
* Gets the value of the reviewers property.
*
*/
public int getReviewers() {
return reviewers;
}
/**
* Sets the value of the reviewers property.
*
*/
public void setReviewers(int value) {
this.reviewers = value;
}
/**
* Gets the value of the allowActions property.
*
*/
public boolean isAllowActions() {
return allowActions;
}
/**
* Sets the value of the allowActions property.
*
*/
public void setAllowActions(boolean value) {
this.allowActions = value;
}
/**
* Gets the value of the ldapGroupMappings property.
*
* @return
* possible object is
* {@link ArrayOfCxWSLdapGroupMapping }
*
*/
public ArrayOfCxWSLdapGroupMapping getLdapGroupMappings() {
return ldapGroupMappings;
}
/**
* Sets the value of the ldapGroupMappings property.
*
* @param value
* allowed object is
* {@link ArrayOfCxWSLdapGroupMapping }
*
*/
public void setLdapGroupMappings(ArrayOfCxWSLdapGroupMapping value) {
this.ldapGroupMappings = value;
}
}