Class ExecuteExtractionSchedulable
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
-
- org.ametys.cms.schedule.AbstractSendingMailSchedulable
-
- org.ametys.plugins.extraction.execution.ExecuteExtractionSchedulable
-
- All Implemented Interfaces:
Schedulable
,LogEnabled
,PluginAware
,Initializable
,Component
,Configurable
,Contextualizable
,Serviceable
public class ExecuteExtractionSchedulable extends AbstractSendingMailSchedulable
ASchedulable
job which execute an extraction
-
-
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 static String
DEFINITION_FILE_PATH_KEY
The key for the extraction definition filestatic String
PIPELINE_KEY
The key for the pipelinestatic String
RECIPIENT_KEY
The key for the recipientstatic String
VARIABLES_KEY
The key for the variables values-
Fields inherited from class org.ametys.cms.schedule.AbstractSendingMailSchedulable
_currentUserProvider, _i18nUtils, _mailSender, _sysadminMail, _userHelper
-
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 ExecuteExtractionSchedulable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
_doExecute(JobExecutionContext context)
Executes the schedulable.protected I18nizableText
_getErrorMailBody(JobExecutionContext context, Throwable throwable)
Retrieves the body of the error mailprotected I18nizableText
_getErrorMailSubject(JobExecutionContext context)
Retrieves the subject of the error mailprotected Optional<String>
_getRecipient(JobExecutionContext context)
Retrieves the optional recipient of the mailprotected I18nizableText
_getSuccessMailBody(JobExecutionContext context)
Retrieves the body of the success mailprotected I18nizableText
_getSuccessMailSubject(JobExecutionContext context)
Retrieves the subject of the success mailprotected boolean
_isMailBodyInHTML(JobExecutionContext context)
Determines if the mail body is in HTMLvoid
service(ServiceManager manager)
-
Methods inherited from class org.ametys.cms.schedule.AbstractSendingMailSchedulable
_sendMail, execute, initialize
-
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
-
DEFINITION_FILE_PATH_KEY
public static final String DEFINITION_FILE_PATH_KEY
The key for the extraction definition file- See Also:
- Constant Field Values
-
VARIABLES_KEY
public static final String VARIABLES_KEY
The key for the variables values- See Also:
- Constant Field Values
-
RECIPIENT_KEY
public static final String RECIPIENT_KEY
The key for the recipient- See Also:
- Constant Field Values
-
PIPELINE_KEY
public static final String PIPELINE_KEY
The key for the pipeline- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ExecuteExtractionSchedulable
public ExecuteExtractionSchedulable()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classAbstractSendingMailSchedulable
- Throws:
ServiceException
-
_doExecute
public void _doExecute(JobExecutionContext context) throws Exception
Description copied from class:AbstractSendingMailSchedulable
Executes the schedulable.- Specified by:
_doExecute
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Throws:
Exception
- if an error occurred
-
_getRecipient
protected Optional<String> _getRecipient(JobExecutionContext context)
Description copied from class:AbstractSendingMailSchedulable
Retrieves the optional recipient of the mail- Overrides:
_getRecipient
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Returns:
- the optional recipient of the mail
-
_isMailBodyInHTML
protected boolean _isMailBodyInHTML(JobExecutionContext context)
Description copied from class:AbstractSendingMailSchedulable
Determines if the mail body is in HTML- Overrides:
_isMailBodyInHTML
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Returns:
true
if the mail body is in HTML,false
otherwise
-
_getSuccessMailSubject
protected I18nizableText _getSuccessMailSubject(JobExecutionContext context)
Description copied from class:AbstractSendingMailSchedulable
Retrieves the subject of the success mail- Specified by:
_getSuccessMailSubject
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Returns:
- the subject of the success mail
-
_getSuccessMailBody
protected I18nizableText _getSuccessMailBody(JobExecutionContext context)
Description copied from class:AbstractSendingMailSchedulable
Retrieves the body of the success mail- Specified by:
_getSuccessMailBody
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Returns:
- the body of the success mail
-
_getErrorMailSubject
protected I18nizableText _getErrorMailSubject(JobExecutionContext context)
Description copied from class:AbstractSendingMailSchedulable
Retrieves the subject of the error mail- Specified by:
_getErrorMailSubject
in classAbstractSendingMailSchedulable
- Parameters:
context
- the context- Returns:
- the subject of the error mail
-
_getErrorMailBody
protected I18nizableText _getErrorMailBody(JobExecutionContext context, Throwable throwable)
Description copied from class:AbstractSendingMailSchedulable
Retrieves the body of the error mail- Specified by:
_getErrorMailBody
in classAbstractSendingMailSchedulable
- Parameters:
context
- the contextthrowable
- the error- Returns:
- the body of the error mail
-
-