Class ProtocolData

    • Constructor Detail

      • ProtocolData

        public ProtocolData()
    • Method Detail

      • getEntryDate

        public Date getEntryDate()
        Description copied from interface: RegisteredData
        Get the date this item was added to the database. The value is generated at creation time and can't be modified later.
        Specified by:
        getEntryDate in interface RegisteredData
      • setEntryDate

        public void setEntryDate​(Date entryDate)
      • getExternalId

        public String getExternalId()
        Get the external id for the protocol.
        Since:
        2.15
        Hibernate: property
        column="`external_id`" type="string" length="255" not-null="false"
      • setExternalId

        public void setExternalId​(String externalId)
      • getParameters

        public Set<AnnotationTypeData> getParameters()
        This set manages the parameters for this protcol.
        Since:
        2.2
        Hibernate: set
        table="`ProtocolParameters`" lazy="true"
        Hibernate: collection-key
        column="`protocol_id`"
        Hibernate: collection-many-to-many
        column="`annotationtype_id`" class="net.sf.basedb.core.data.AnnotationTypeData"