Class ReporterCloneTemplateData

    • Constructor Detail

      • ReporterCloneTemplateData

        public ReporterCloneTemplateData()
    • 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)
      • isLocked

        public boolean isLocked()
        The template is locked when it is used by a VirtualDbData. The locked status can never be changed.
        Hibernate: property
        column="`locked`" type="boolean" not-null="true" update="false"
      • setLocked

        public void setLocked​(boolean locked)
      • getBytes

        public long getBytes()
        The number of bytes the cloned reporter information uses in the dynamic database.
        Hibernate: property
        column="`bytes`" type="long" not-null="true"
      • setBytes

        public void setBytes​(long bytes)
      • getProperties

        public Map<String,​ReporterClonePropertyData> getProperties()
        Get the map that manages cloned properties.
        Hibernate: map
        table="`ReporterCloneProperties`" lazy="true"
        Hibernate: collection-key
        column="`template_id`"
        Hibernate: collection-index
        column="`property_name`" type="string" length="255"
        Hibernate: collection-composite-element
        class="net.sf.basedb.core.data.ReporterClonePropertyData" not-null="true"