Class PlateEventData

    • Constructor Detail

      • PlateEventData

        public PlateEventData()
    • Method Detail

      • getPlate

        public PlateData getPlate()
        The plate this event belongs to.
        See Also:
        PlateData.getEvents()
        Hibernate: many-to-one
        column="`plate_id`" not-null="true" outer-join="false" update="false"
      • setPlate

        public void setPlate​(PlateData plate)
      • setPlateEventType

        public void setPlateEventType​(PlateEventTypeData plateEventType)
      • getProtocol

        public ProtocolData getProtocol()
        The protocol used for the event.
        Hibernate: many-to-one
        column="`protocol_id`" not-null="false" outer-join="false"
      • setProtocol

        public void setProtocol​(ProtocolData protocol)
      • getUser

        public UserData getUser()
        Get the user that is responsible for this event, typically this is the user that entered the information in the database.
        Hibernate: many-to-one
        column="`user_id`" not-null="false" outer-join="false" update="false"
      • setUser

        public void setUser​(UserData user)
      • getEntryDate

        public Date getEntryDate()
        Get the date this event was added to the database.
        Hibernate: property
        column="`entry_date`" type="date" not-null="true" update="false"
      • setEntryDate

        public void setEntryDate​(Date entryDate)
      • getEventDate

        public Date getEventDate()
        Get the date this event happened in the lab.
        Hibernate: property
        column="`event_date`" type="date" not-null="false"
      • setEventDate

        public void setEventDate​(Date eventDate)
      • getHardware

        public HardwareData getHardware()
        Get the hardware used in this event.
        Hibernate: many-to-one
        column="`hardware_id`" not-null="false" outer-join="false"
      • setHardware

        public void setHardware​(HardwareData hardware)
      • getComment

        public String getComment()
        Get the comment about this event.
        Hibernate: property
        column="`comment`" type="text" not-null="false"
      • setComment

        public void setComment​(String comment)