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

org.gs4tr.projectdirector.model.dto.xsd.ProjectCustomFieldConfiguration Maven / Gradle / Ivy

Go to download

The newest version!

package org.gs4tr.projectdirector.model.dto.xsd;

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 ProjectCustomFieldConfiguration complex type. * *

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

 * <complexType name="ProjectCustomFieldConfiguration">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mandatory" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="values" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectCustomFieldConfiguration", propOrder = { "description", "mandatory", "name", "type", "values" }) public class ProjectCustomFieldConfiguration { @XmlElement(required = true, nillable = true) protected String description; @XmlElement(required = true, type = Boolean.class, nillable = true) protected Boolean mandatory; @XmlElement(required = true, nillable = true) protected String name; @XmlElement(required = true, nillable = true) protected String type; @XmlElement(required = true, nillable = true) protected String values; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the mandatory property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMandatory() { return mandatory; } /** * Sets the value of the mandatory property. * * @param value * allowed object is * {@link Boolean } * */ public void setMandatory(Boolean value) { this.mandatory = 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the values property. * * @return * possible object is * {@link String } * */ public String getValues() { return values; } /** * Sets the value of the values property. * * @param value * allowed object is * {@link String } * */ public void setValues(String value) { this.values = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy