package com.coverity.ws.v9; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for attributeValueSpecDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="attributeValueSpecDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "attributeValueSpecDataObj", propOrder = { "deprecated", "name" }) public class AttributeValueSpecDataObj { protected Boolean deprecated; @XmlElement(required = true) protected String name; /** * Gets the value of the deprecated property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDeprecated() { return deprecated; } /** * Sets the value of the deprecated property. * * @param value * allowed object is * {@link Boolean } * */ public void setDeprecated(Boolean value) { this.deprecated = 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; } }