Class Study


  • public class Study
    extends EntityBaseBean

    Java class for study complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="study">
       <complexContent>
         <extension base="{http://icatproject.org}entityBaseBean">
           <sequence>
             <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
             <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="pid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
             <element name="status" type="{http://icatproject.org}studyStatus" minOccurs="0"/>
             <element name="studyInvestigations" type="{http://icatproject.org}studyInvestigation" maxOccurs="unbounded" minOccurs="0"/>
             <element name="user" type="{http://icatproject.org}user" minOccurs="0"/>
           </sequence>
         </extension>
       </complexContent>
     </complexType>
     
    • Constructor Detail

      • Study

        public Study()
    • Method Detail

      • getDescription

        public String getDescription()
        Gets the value of the description property.
        Returns:
        possible object is String
      • setDescription

        public void setDescription​(String value)
        Sets the value of the description property.
        Parameters:
        value - allowed object is String
      • getName

        public String getName()
        Gets the value of the name property.
        Returns:
        possible object is String
      • setName

        public void setName​(String value)
        Sets the value of the name property.
        Parameters:
        value - allowed object is String
      • getPid

        public String getPid()
        Gets the value of the pid property.
        Returns:
        possible object is String
      • setPid

        public void setPid​(String value)
        Sets the value of the pid property.
        Parameters:
        value - allowed object is String
      • getStatus

        public StudyStatus getStatus()
        Gets the value of the status property.
        Returns:
        possible object is StudyStatus
      • setStatus

        public void setStatus​(StudyStatus value)
        Sets the value of the status property.
        Parameters:
        value - allowed object is StudyStatus
      • getStudyInvestigations

        public List<StudyInvestigation> getStudyInvestigations()
        Gets the value of the studyInvestigations property.

        This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the studyInvestigations property.

        For example, to add a new item, do as follows:

            getStudyInvestigations().add(newItem);
         

        Objects of the following type(s) are allowed in the list StudyInvestigation

      • getUser

        public User getUser()
        Gets the value of the user property.
        Returns:
        possible object is User
      • setUser

        public void setUser​(User value)
        Sets the value of the user property.
        Parameters:
        value - allowed object is User