Class TlfImportInfo

java.lang.Object
com.sas.lsaf.clinical.tlf.TlfImportInfo
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
TlfTemplateImportInfo

public class TlfImportInfo extends Object implements Serializable
The class that represents all of the details to import of TLFs.
Since:
2.4
See Also:
  • Constructor Details

    • TlfImportInfo

      public TlfImportInfo()
      Constructor.
    • TlfImportInfo

      public TlfImportInfo(String sectionsFilePath, String sectionsFileVersion, String tlfsFilePath, String tlfsFileVersion, SourceLocation importFileSourceLocation, UpdateAction updateAction)
      Constructor.
      Parameters:
      sectionsFilePath - The path of the import file to update the TLF sections.
      sectionsFileVersion - The version of the TLF sections import file.
      tlfsFilePath - The path to the import file to update the TLFs.
      tlfsFileVersion - The version of the TLFs import file.
      importFileSourceLocation - The source location (repository or workspace) of the import file.
      updateAction - The type of update to make when importing, such as replace or add new.
  • Method Details

    • getSectionsFilePath

      public String getSectionsFilePath()
      Gets the path to the import file to update the sections.
      Returns:
      The path.
    • setSectionsFilePath

      public void setSectionsFilePath(String sectionsFilePath)
      Sets the path to the import file to update the sections.
      Parameters:
      sectionsFilePath - The path to the import file to update the sections.
    • getSectionsFileVersion

      public String getSectionsFileVersion()
      Gets the version of the sections import file. If null, the latest version is used.
      Returns:
      The version.
    • setSectionsFileVersion

      public void setSectionsFileVersion(String sectionsFileVersion)
      Sets the version of the sections import file. If null, the latest version is used.
      Parameters:
      sectionsFileVersion - The version of the sections import file.
    • getTlfsFilePath

      public String getTlfsFilePath()
      Gets the path to the import file for updating TLFs.
      Returns:
      The path.
    • setTlfsFilePath

      public void setTlfsFilePath(String tlfsFilePath)
      Sets the path to the import file to update TLFs.
      Parameters:
      tlfsFilePath - The path to the import file to update TLFs.
    • getTlfsFileVersion

      public String getTlfsFileVersion()
      Gets the version of the TLFs import file. If null, the latest version is used.
      Returns:
      The version.
    • setTlfsFileVersion

      public void setTlfsFileVersion(String tlfsFileVersion)
      Sets the version of the TLFs import file. If null, the latest version is used.
      Parameters:
      tlfsFileVersion - The version of the TLFs import file.
    • getResultsFilePath

      public String getResultsFilePath()
      Gets the path to the import file to update the results.
      Returns:
      The path.
    • setResultsFilePath

      public void setResultsFilePath(String resultsFilePath)
      Sets the path to the import file to update the results.
      Parameters:
      resultsFilePath - The path to the import file to update the results.
    • getResultsFileVersion

      public String getResultsFileVersion()
      Gets the version of the results import file. If null, the latest version is used.
      Returns:
      The version.
    • setResultsFileVersion

      public void setResultsFileVersion(String resultsFileVersion)
      Sets the version of the results import file. If null, the latest version is used.
      Parameters:
      resultsFileVersion - The version of the results import file.
    • getDataSetsFilePath

      public String getDataSetsFilePath()
      Gets the path to the import file to update the data sets.
      Returns:
      The path.
    • setDataSetsFilePath

      public void setDataSetsFilePath(String dataSetsFilePath)
      Sets the path to the import file to update the data sets.
      Parameters:
      dataSetsFilePath - The path to the import file to update the data sets.
    • getDataSetsFileVersion

      public String getDataSetsFileVersion()
      Gets the version of the data sets import file. If null, the latest version is used.
      Returns:
      The version.
    • setDataSetsFileVersion

      public void setDataSetsFileVersion(String dataSetsFileVersion)
      Sets the version of the data sets import file. If null, the latest version is used.
      Parameters:
      dataSetsFileVersion - The version of the data sets import file.
    • getImportFileSourceLocation

      public SourceLocation getImportFileSourceLocation()
      Gets the source location (repository or workspace) of the import file.
      Returns:
      The source location.
    • setImportFileSourceLocation

      public void setImportFileSourceLocation(SourceLocation importFileSourceLocation)
      Sets the source location (repository or workspace) of the import file.
      Parameters:
      importFileSourceLocation - The source location (repository or workspace) of the import file.
    • getUpdateAction

      public UpdateAction getUpdateAction()
      Gets the type of update to make when importing, such as replace or add new.
      Returns:
      The update action.
    • setUpdateAction

      public void setUpdateAction(UpdateAction updateAction)
      Sets the type of update to make when importing, such as replace or add new.
      Parameters:
      updateAction - The update action to perform when updating information from an import.