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

checkmarx.wsdl.portal.CxWSJIRAFields 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 CxWSJIRAFields complex type. * *

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

 * <complexType name="CxWSJIRAFields">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="JiraFieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DefaultValues" type="{http://Checkmarx.com}ArrayOfAnyType" minOccurs="0"/>
 *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="Schema" type="{http://Checkmarx.com}CxWSJIRASchema" minOccurs="0"/>
 *         <element name="AllowedValues" type="{http://Checkmarx.com}ArrayOfCxWSJIRAAllowedValues" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CxWSJIRAFields", propOrder = { "jiraFieldName", "defaultValues", "name", "required", "schema", "allowedValues" }) public class CxWSJIRAFields { @XmlElement(name = "JiraFieldName") protected String jiraFieldName; @XmlElement(name = "DefaultValues") protected ArrayOfAnyType defaultValues; @XmlElement(name = "Name") protected String name; @XmlElement(name = "Required") protected boolean required; @XmlElement(name = "Schema") protected CxWSJIRASchema schema; @XmlElement(name = "AllowedValues") protected ArrayOfCxWSJIRAAllowedValues allowedValues; /** * Gets the value of the jiraFieldName property. * * @return * possible object is * {@link String } * */ public String getJiraFieldName() { return jiraFieldName; } /** * Sets the value of the jiraFieldName property. * * @param value * allowed object is * {@link String } * */ public void setJiraFieldName(String value) { this.jiraFieldName = value; } /** * Gets the value of the defaultValues property. * * @return * possible object is * {@link ArrayOfAnyType } * */ public ArrayOfAnyType getDefaultValues() { return defaultValues; } /** * Sets the value of the defaultValues property. * * @param value * allowed object is * {@link ArrayOfAnyType } * */ public void setDefaultValues(ArrayOfAnyType value) { this.defaultValues = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the required property. * */ public boolean isRequired() { return required; } /** * Sets the value of the required property. * */ public void setRequired(boolean value) { this.required = value; } /** * Gets the value of the schema property. * * @return * possible object is * {@link CxWSJIRASchema } * */ public CxWSJIRASchema getSchema() { return schema; } /** * Sets the value of the schema property. * * @param value * allowed object is * {@link CxWSJIRASchema } * */ public void setSchema(CxWSJIRASchema value) { this.schema = value; } /** * Gets the value of the allowedValues property. * * @return * possible object is * {@link ArrayOfCxWSJIRAAllowedValues } * */ public ArrayOfCxWSJIRAAllowedValues getAllowedValues() { return allowedValues; } /** * Sets the value of the allowedValues property. * * @param value * allowed object is * {@link ArrayOfCxWSJIRAAllowedValues } * */ public void setAllowedValues(ArrayOfCxWSJIRAAllowedValues value) { this.allowedValues = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy