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; /** * <p>Java class for studyEventDefinitionListAllType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="studyEventDefinitionListAllType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="studyRef" type="{http://openclinica.org/ws/beans}studyRefType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "studyEventDefinitionListAllType", propOrder = { "studyRef" }) public class StudyEventDefinitionListAllType { @XmlElement(required = true) protected StudyRefType studyRef; /** * Gets the value of the studyRef property. * * @return * possible object is * {@link StudyRefType } * */ public StudyRefType getStudyRef() { return studyRef; } /** * Sets the value of the studyRef property. * * @param value * allowed object is * {@link StudyRefType } * */ public void setStudyRef(StudyRefType value) { this.studyRef = value; } }