Class FileSetData

    • Constructor Detail

      • FileSetData

        public FileSetData()
    • Method Detail

      • getItemType

        public int getItemType()
        Get the item type this file set is associated with.
        Hibernate: property
        column="`item_type`" type="int" not-null="true" update="false"
      • setItemType

        public void setItemType​(int itemType)
      • getMembers

        public Set<FileSetMemberData> getMembers()
        The members of this file set. This is the inverse end.
        Since:
        3.0 (was returning a Map in BASE 2.x)
        See Also:
        FileSetMemberData.getFileSet()
        Hibernate: set
        lazy="true" cascade="delete" inverse="true"
        Hibernate: collection-key
        column="`fileset_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.FileSetMemberData"