Package com.adobe.cq.scheduled.exporter
Interface ExportConfig
-
public interface ExportConfig
TheExportConfig
interface represents configurations managed by theScheduledExporter
service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPath()
Returns the identification path of this configuration.java.lang.String
getSchedulerExpression()
The scheduler expression of this configuration.java.lang.String
getSource()
Returns the data source path.java.lang.String
getType()
Returns the type of this exporter.boolean
isEnabled()
The enable state for the configuration.
-
-
-
Method Detail
-
getSchedulerExpression
java.lang.String getSchedulerExpression()
The scheduler expression of this configuration.- Returns:
- Scheduler expression string
-
getPath
java.lang.String getPath()
Returns the identification path of this configuration.- Returns:
- Identification path
-
getType
java.lang.String getType()
Returns the type of this exporter. The type is a String representing theExporter
implementation responsible for handling the export.- Returns:
- Importer type
-
getSource
java.lang.String getSource()
Returns the data source path. This is given to theExporter
handling thegetType()
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.
-
-