package budgetary.reference; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PrimaryContractorReferenceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PrimaryContractorReferenceType"> * <complexContent> * <extension base="{budgetary/reference}ContractorReferenceType"> * <sequence> * <element name="primaryId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PrimaryContractorReferenceType", propOrder = { "primaryId" }) public class PrimaryContractorReferenceType extends ContractorReferenceType { protected String primaryId; /** * Gets the value of the primaryId property. * * @return * possible object is * {@link String } * */ public String getPrimaryId() { return primaryId; } /** * Sets the value of the primaryId property. * * @param value * allowed object is * {@link String } * */ public void setPrimaryId(String value) { this.primaryId = value; } public PrimaryContractorReferenceType withPrimaryId(String value) { setPrimaryId(value); return this; } @Override public PrimaryContractorReferenceType withContractorId(String value) { setContractorId(value); return this; } }