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

checkmarx.wsdl.portal.CreateNewServiceProvider 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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="newSpName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="spManagersint" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <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="ldapGroupMappings" type="{http://Checkmarx.com}ArrayOfCxWSLdapGroupMapping" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sessionID", "newSpName", "spManagersint", "companyManagers", "scanners", "reviewers", "ldapGroupMappings" }) @XmlRootElement(name = "CreateNewServiceProvider") public class CreateNewServiceProvider { protected String sessionID; protected String newSpName; protected int spManagersint; protected int companyManagers; protected int scanners; protected int reviewers; 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 newSpName property. * * @return * possible object is * {@link String } * */ public String getNewSpName() { return newSpName; } /** * Sets the value of the newSpName property. * * @param value * allowed object is * {@link String } * */ public void setNewSpName(String value) { this.newSpName = value; } /** * Gets the value of the spManagersint property. * */ public int getSpManagersint() { return spManagersint; } /** * Sets the value of the spManagersint property. * */ public void setSpManagersint(int value) { this.spManagersint = 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy