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

checkmarx.wsdl.portal.ProjectConfiguration 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ProjectConfiguration complex type. * *

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

 * <complexType name="ProjectConfiguration">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProjectSettings" type="{http://Checkmarx.com}ProjectSettings" minOccurs="0"/>
 *         <element name="SourceCodeSettings" type="{http://Checkmarx.com}SourceCodeSettings" minOccurs="0"/>
 *         <element name="ScheduleSettings" type="{http://Checkmarx.com}ScheduleSettings" minOccurs="0"/>
 *         <element name="ScanActionSettings" type="{http://Checkmarx.com}ScanActionSettings" minOccurs="0"/>
 *         <element name="ProjectIssueTrackingSettings" type="{http://Checkmarx.com}CxWSProjectIssueTrackingSettings" minOccurs="0"/>
 *         <element name="CustomFields" type="{http://Checkmarx.com}ArrayOfCxWSProjectCustomField" minOccurs="0"/>
 *         <element name="DataRetentionSettings" type="{http://Checkmarx.com}DataRetentionSettings" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectConfiguration", propOrder = { "projectSettings", "sourceCodeSettings", "scheduleSettings", "scanActionSettings", "projectIssueTrackingSettings", "customFields", "dataRetentionSettings" }) public class ProjectConfiguration { @XmlElement(name = "ProjectSettings") protected ProjectSettings projectSettings; @XmlElement(name = "SourceCodeSettings") protected SourceCodeSettings sourceCodeSettings; @XmlElement(name = "ScheduleSettings") protected ScheduleSettings scheduleSettings; @XmlElement(name = "ScanActionSettings") protected ScanActionSettings scanActionSettings; @XmlElement(name = "ProjectIssueTrackingSettings") protected CxWSProjectIssueTrackingSettings projectIssueTrackingSettings; @XmlElement(name = "CustomFields") protected ArrayOfCxWSProjectCustomField customFields; @XmlElement(name = "DataRetentionSettings") protected DataRetentionSettings dataRetentionSettings; /** * Gets the value of the projectSettings property. * * @return * possible object is * {@link ProjectSettings } * */ public ProjectSettings getProjectSettings() { return projectSettings; } /** * Sets the value of the projectSettings property. * * @param value * allowed object is * {@link ProjectSettings } * */ public void setProjectSettings(ProjectSettings value) { this.projectSettings = value; } /** * Gets the value of the sourceCodeSettings property. * * @return * possible object is * {@link SourceCodeSettings } * */ public SourceCodeSettings getSourceCodeSettings() { return sourceCodeSettings; } /** * Sets the value of the sourceCodeSettings property. * * @param value * allowed object is * {@link SourceCodeSettings } * */ public void setSourceCodeSettings(SourceCodeSettings value) { this.sourceCodeSettings = value; } /** * Gets the value of the scheduleSettings property. * * @return * possible object is * {@link ScheduleSettings } * */ public ScheduleSettings getScheduleSettings() { return scheduleSettings; } /** * Sets the value of the scheduleSettings property. * * @param value * allowed object is * {@link ScheduleSettings } * */ public void setScheduleSettings(ScheduleSettings value) { this.scheduleSettings = value; } /** * Gets the value of the scanActionSettings property. * * @return * possible object is * {@link ScanActionSettings } * */ public ScanActionSettings getScanActionSettings() { return scanActionSettings; } /** * Sets the value of the scanActionSettings property. * * @param value * allowed object is * {@link ScanActionSettings } * */ public void setScanActionSettings(ScanActionSettings value) { this.scanActionSettings = value; } /** * Gets the value of the projectIssueTrackingSettings property. * * @return * possible object is * {@link CxWSProjectIssueTrackingSettings } * */ public CxWSProjectIssueTrackingSettings getProjectIssueTrackingSettings() { return projectIssueTrackingSettings; } /** * Sets the value of the projectIssueTrackingSettings property. * * @param value * allowed object is * {@link CxWSProjectIssueTrackingSettings } * */ public void setProjectIssueTrackingSettings(CxWSProjectIssueTrackingSettings value) { this.projectIssueTrackingSettings = value; } /** * Gets the value of the customFields property. * * @return * possible object is * {@link ArrayOfCxWSProjectCustomField } * */ public ArrayOfCxWSProjectCustomField getCustomFields() { return customFields; } /** * Sets the value of the customFields property. * * @param value * allowed object is * {@link ArrayOfCxWSProjectCustomField } * */ public void setCustomFields(ArrayOfCxWSProjectCustomField value) { this.customFields = value; } /** * Gets the value of the dataRetentionSettings property. * * @return * possible object is * {@link DataRetentionSettings } * */ public DataRetentionSettings getDataRetentionSettings() { return dataRetentionSettings; } /** * Sets the value of the dataRetentionSettings property. * * @param value * allowed object is * {@link DataRetentionSettings } * */ public void setDataRetentionSettings(DataRetentionSettings value) { this.dataRetentionSettings = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy