package com.coverity.ws.v9; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for attributeDefinitionSpecDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="attributeDefinitionSpecDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="attributeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="attributeType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="attributeValueChangeSpec" type="{http://ws.coverity.com/v9}attributeValueChangeSpecDataObj" minOccurs="0"/> * <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="showInTriage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "attributeDefinitionSpecDataObj", propOrder = { "attributeName", "attributeType", "attributeValueChangeSpec", "defaultValue", "description", "showInTriage" }) public class AttributeDefinitionSpecDataObj { protected String attributeName; protected String attributeType; protected AttributeValueChangeSpecDataObj attributeValueChangeSpec; protected String defaultValue; protected String description; protected Boolean showInTriage; /** * Gets the value of the attributeName property. * * @return * possible object is * {@link String } * */ public String getAttributeName() { return attributeName; } /** * Sets the value of the attributeName property. * * @param value * allowed object is * {@link String } * */ public void setAttributeName(String value) { this.attributeName = value; } /** * Gets the value of the attributeType property. * * @return * possible object is * {@link String } * */ public String getAttributeType() { return attributeType; } /** * Sets the value of the attributeType property. * * @param value * allowed object is * {@link String } * */ public void setAttributeType(String value) { this.attributeType = value; } /** * Gets the value of the attributeValueChangeSpec property. * * @return * possible object is * {@link AttributeValueChangeSpecDataObj } * */ public AttributeValueChangeSpecDataObj getAttributeValueChangeSpec() { return attributeValueChangeSpec; } /** * Sets the value of the attributeValueChangeSpec property. * * @param value * allowed object is * {@link AttributeValueChangeSpecDataObj } * */ public void setAttributeValueChangeSpec(AttributeValueChangeSpecDataObj value) { this.attributeValueChangeSpec = value; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } /** * 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 showInTriage property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShowInTriage() { return showInTriage; } /** * Sets the value of the showInTriage property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowInTriage(Boolean value) { this.showInTriage = value; } }