Interface ExportConfig


public interface ExportConfig
The ExportConfig interface represents configurations managed by the ScheduledExporter service.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the identification path of this configuration.
    The scheduler expression of this configuration.
    Returns the data source path.
    Returns the type of this exporter.
    boolean
    The enable state for the configuration.
  • Method Details

    • getSchedulerExpression

      String getSchedulerExpression()
      The scheduler expression of this configuration.
      Returns:
      Scheduler expression string
    • getPath

      String getPath()
      Returns the identification path of this configuration.
      Returns:
      Identification path
    • getType

      String getType()
      Returns the type of this exporter. The type is a String representing the Exporter implementation responsible for handling the export.
      Returns:
      Importer type
    • getSource

      String getSource()
      Returns the data source path. This is given to the Exporter handling the getType() of this configuration to acquire the data.
      Returns:
      Data source path
    • isEnabled

      boolean isEnabled()
      The enable state for the configuration.
      Returns:
      true if enabled, false otherwise.