Class FileSetMemberData

    • Constructor Detail

      • FileSetMemberData

        public FileSetMemberData()
    • Method Detail

      • getFileSet

        public FileSetData getFileSet()
        Get the file set this file belongs to.
        Hibernate: column
        name="`fileset_id`" not-null="true" unique-key="FileSetMember_uniquefile"
        Hibernate: many-to-one
        outer-join="false" update="false"
      • setFileSet

        public void setFileSet​(FileSetData fileSet)
      • getDataFileType

        public DataFileTypeData getDataFileType()
        Get the type of this file. A set may only contain one file for each type.
        Hibernate: column
        name="`datafiletype_id`" not-null="true" unique-key="FileSetMember_uniquefile"
        Hibernate: many-to-one
        outer-join="false" update="false"
      • getFile

        public FileData getFile()
        Get the file.
        Hibernate: column
        name="`file_id`" not-null="true" unique-key="FileSetMember_uniquefile"
        Hibernate: many-to-one
        outer-join="false"
      • setFile

        public void setFile​(FileData file)
      • isValid

        public Boolean isValid()
        If the file has been validated or not. A null value indicates that the file hasn't been validated. A FALSE value indicates an invalid file.
        Hibernate: property
        column="`valid`" type="boolean" not-null="false"
      • setValid

        public void setValid​(Boolean valid)
      • getErrorMessage

        public String getErrorMessage()
        The error message if the file validation failed.
        Hibernate: property
        column="`error_message`" type="text"
      • setErrorMessage

        public void setErrorMessage​(String errorMessage)