Class DeleteExtractionsSchedulable
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
-
- org.ametys.cms.schedule.AbstractDeleteFilesSchedulable
-
- org.ametys.plugins.extraction.execution.DeleteExtractionsSchedulable
-
- All Implemented Interfaces:
Schedulable
,LogEnabled
,PluginAware
,Initializable
,Component
,Configurable
,Contextualizable
,Serviceable
public class DeleteExtractionsSchedulable extends AbstractDeleteFilesSchedulable implements Initializable
ASchedulable
job for deleting old extractions
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.ametys.cms.schedule.AbstractDeleteFilesSchedulable
AbstractDeleteFilesSchedulable.DeleteFilesConfiguration
-
Nested classes/interfaces inherited from class org.ametys.plugins.core.impl.schedule.AbstractStaticSchedulable
AbstractStaticSchedulable.SchedulableParameterParser
-
-
Field Summary
Fields Modifier and Type Field Description protected CurrentUserProvider
_currentUserProvider
Current user providerprotected RightManager
_rightManager
Right Managerstatic String
LIFETIME_KEY
Parameter for workspace-
Fields inherited from class org.ametys.cms.schedule.AbstractDeleteFilesSchedulable
_fileHelper
-
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 DeleteExtractionsSchedulable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AbstractDeleteFilesSchedulable.DeleteFilesConfiguration
_getConfiguration(JobExecutionContext context)
Get the needed values so the script can runvoid
execute(JobExecutionContext context)
The action to perform when a trigger is fired.void
initialize()
void
service(ServiceManager manager)
-
Methods inherited from class org.ametys.cms.schedule.AbstractDeleteFilesSchedulable
_createFileFilter, _delete
-
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
-
LIFETIME_KEY
public static final String LIFETIME_KEY
Parameter for workspace- See Also:
- Constant Field Values
-
_rightManager
protected RightManager _rightManager
Right Manager
-
_currentUserProvider
protected CurrentUserProvider _currentUserProvider
Current user provider
-
-
Constructor Detail
-
DeleteExtractionsSchedulable
public DeleteExtractionsSchedulable()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classAbstractDeleteFilesSchedulable
- Throws:
ServiceException
-
initialize
public void initialize() throws Exception
- Specified by:
initialize
in interfaceInitializable
- Throws:
Exception
-
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
- Overrides:
execute
in classAbstractDeleteFilesSchedulable
- Parameters:
context
- the context- Throws:
Exception
- if an error occured
-
_getConfiguration
protected AbstractDeleteFilesSchedulable.DeleteFilesConfiguration _getConfiguration(JobExecutionContext context)
Description copied from class:AbstractDeleteFilesSchedulable
Get the needed values so the script can run- Specified by:
_getConfiguration
in classAbstractDeleteFilesSchedulable
- Parameters:
context
- the context- Returns:
- the configuration with needed values for deletion
-
-