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 mergedDefectIdDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="mergedDefectIdDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cid" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="mergeKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mergedDefectIdDataObj", propOrder = { "cid", "mergeKey" }) public class MergedDefectIdDataObj { protected Long cid; protected String mergeKey; /** * Gets the value of the cid property. * * @return * possible object is * {@link Long } * */ public Long getCid() { return cid; } /** * Sets the value of the cid property. * * @param value * allowed object is * {@link Long } * */ public void setCid(Long value) { this.cid = value; } /** * Gets the value of the mergeKey property. * * @return * possible object is * {@link String } * */ public String getMergeKey() { return mergeKey; } /** * Sets the value of the mergeKey property. * * @param value * allowed object is * {@link String } * */ public void setMergeKey(String value) { this.mergeKey = value; } }