Class DataSetFileDTO

  • All Implemented Interfaces:
    java.io.Serializable

    @JsonObject("DataSetFileDTO")
    public class DataSetFileDTO
    extends java.lang.Object
    implements java.io.Serializable
    Represents a reference to a file/folder within a data set.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DataSetFileDTO​(java.lang.String dataSetCode, java.lang.String path, boolean isRecursive)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDataSetCode()
      The code of the data set that owns this file
      java.lang.String getPath()
      The path within the data set of the file
      boolean isRecursive()
      If true, this object includes sub folders
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DataSetFileDTO

        public DataSetFileDTO​(java.lang.String dataSetCode,
                              java.lang.String path,
                              boolean isRecursive)
    • Method Detail

      • getDataSetCode

        public java.lang.String getDataSetCode()
        The code of the data set that owns this file
      • getPath

        public java.lang.String getPath()
        The path within the data set of the file
      • isRecursive

        public boolean isRecursive()
        If true, this object includes sub folders
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object