package org.openclinica.ws.beans; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for studyRefType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="studyRefType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="identifier" type="{http://openclinica.org/ws/beans}customStringType"/> * <element name="siteRef" type="{http://openclinica.org/ws/beans}siteRefType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "studyRefType", propOrder = { "identifier", "siteRef" }) public class StudyRefType { @XmlElement(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String identifier; protected SiteRefType siteRef; /** * Gets the value of the identifier property. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = value; } /** * Gets the value of the siteRef property. * * @return * possible object is * {@link SiteRefType } * */ public SiteRefType getSiteRef() { return siteRef; } /** * Sets the value of the siteRef property. * * @param value * allowed object is * {@link SiteRefType } * */ public void setSiteRef(SiteRefType value) { this.siteRef = value; } }