Package org.ametys.cms.search.solr
Class SolrExportSchedulable
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
-
- org.ametys.cms.search.solr.SolrExportSchedulable
-
- All Implemented Interfaces:
Schedulable
,LogEnabled
,PluginAware
,Component
,Configurable
,Contextualizable
,Serviceable
public class SolrExportSchedulable extends AbstractStaticSchedulable
ASchedulable
job for executing scripts.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
AbstractStaticSchedulable.SchedulableParameterParser
-
-
Field Summary
Fields Modifier and Type Field Description protected I18nUtils
_i18nUtils
I18n Utilsprotected SourceResolver
_sourceResolver
The avalon source resolver.static String
EXPORT_URL
The key for the export URLstatic String
RECIPIENT_KEY
The key for the recipient of the report mailstatic String
SEARCHPARAMS_KEY
The key for the search parametersstatic String
SEARCHPARAMS_LANGUAGE
The key for the languagestatic String
TYPE_KEY
The key for the export type-
Fields inherited from class org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
_acceptConcurrentExecution, _context, _description, _iconGlyph, _iconLarge, _iconMedium, _iconSmall, _id, _label, _parameters, _pluginName, _private, _schedulableParameterTypeExtensionPoint, _smanager, _userManager
-
-
Constructor Summary
Constructors Constructor Description SolrExportSchedulable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
_generateFile(File sourceFolder, String uri, String parameters, String extension)
Generate a file from the urivoid
execute(JobExecutionContext context)
The action to perform when a trigger is fired.void
service(ServiceManager manager)
-
Methods inherited from class org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
acceptConcurrentExecution, configure, contextualize, getDescription, getIconGlyph, getIconLarge, getIconMedium, getIconSmall, getId, getLabel, getParameters, isPrivate, setPluginInfo
-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
TYPE_KEY
public static final String TYPE_KEY
The key for the export type- See Also:
- Constant Field Values
-
RECIPIENT_KEY
public static final String RECIPIENT_KEY
The key for the recipient of the report mail- See Also:
- Constant Field Values
-
SEARCHPARAMS_KEY
public static final String SEARCHPARAMS_KEY
The key for the search parameters- See Also:
- Constant Field Values
-
SEARCHPARAMS_LANGUAGE
public static final String SEARCHPARAMS_LANGUAGE
The key for the language- See Also:
- Constant Field Values
-
EXPORT_URL
public static final String EXPORT_URL
The key for the export URL- See Also:
- Constant Field Values
-
_sourceResolver
protected SourceResolver _sourceResolver
The avalon source resolver.
-
_i18nUtils
protected I18nUtils _i18nUtils
I18n Utils
-
-
Constructor Detail
-
SolrExportSchedulable
public SolrExportSchedulable()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classAbstractStaticSchedulable
- Throws:
ServiceException
-
execute
public void execute(JobExecutionContext context) throws Exception
Description copied from interface:Schedulable
The action to perform when a trigger is fired. Do not manually call this method.- Specified by:
execute
in interfaceSchedulable
- Specified by:
execute
in classAbstractStaticSchedulable
- Parameters:
context
- the context- Throws:
Exception
- if an error occured
-
_generateFile
protected String _generateFile(File sourceFolder, String uri, String parameters, String extension) throws IOException
Generate a file from the uri- Parameters:
sourceFolder
- the directory where the file are createduri
- the uriparameters
- the parameters of the uriextension
- the extension of the file- Returns:
- output file name (name.extension)
- Throws:
IOException
- if an error occured with files
-
-