Package com.adobe.cq.scheduled.exporter
Interface ExportConfig
-
public interface ExportConfigTheExportConfiginterface represents configurations managed by theScheduledExporterservice.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPath()Returns the identification path of this configuration.StringgetSchedulerExpression()The scheduler expression of this configuration.StringgetSource()Returns the data source path.StringgetType()Returns the type of this exporter.booleanisEnabled()The enable state for the configuration.
-
-
-
Method Detail
-
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 theExporterimplementation responsible for handling the export.- Returns:
- Importer type
-
getSource
String getSource()
Returns the data source path. This is given to theExporterhandling thegetType()of this configuration to acquire the data.- Returns:
- Data source path
-
isEnabled
boolean isEnabled()
The enable state for the configuration.- Returns:
trueif enabled,falseotherwise.
-
-