Class RepositoryBackgroundEngineHook
- java.lang.Object
-
- org.ametys.plugins.repository.engine.RepositoryBackgroundEngineHook
-
- All Implemented Interfaces:
BackgroundEngineHook
,Component
public class RepositoryBackgroundEngineHook extends Object implements BackgroundEngineHook, Component
Hook used to release the sessions associated with an environment
-
-
Constructor Summary
Constructors Constructor Description RepositoryBackgroundEngineHook()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onEnteringEnvironment(Map<String,Object> environmentInformation)
Hook executed when entering the background environmentvoid
onLeavingEnvironment(Map<String,Object> environmentInformation)
Hook executed when leaving the background environment
-
-
-
Constructor Detail
-
RepositoryBackgroundEngineHook
public RepositoryBackgroundEngineHook()
-
-
Method Detail
-
onEnteringEnvironment
public void onEnteringEnvironment(Map<String,Object> environmentInformation)
Description copied from interface:BackgroundEngineHook
Hook executed when entering the background environment- Specified by:
onEnteringEnvironment
in interfaceBackgroundEngineHook
- Parameters:
environmentInformation
- the environment information.
-
onLeavingEnvironment
public void onLeavingEnvironment(Map<String,Object> environmentInformation)
Description copied from interface:BackgroundEngineHook
Hook executed when leaving the background environment- Specified by:
onLeavingEnvironment
in interfaceBackgroundEngineHook
- Parameters:
environmentInformation
- the environment information.
-
-