Package org.ametys.core.engine
Interface BackgroundEngineHook
-
- All Known Implementing Classes:
RepositoryBackgroundEngineHook
public interface BackgroundEngineHook
Interface to implement hook on entering and leaving background environment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEnteringEnvironment(Map<String,Object> environmentInformation)Hook executed when entering the background environmentvoidonLeavingEnvironment(Map<String,Object> environmentInformation)Hook executed when leaving the background environment
-
-
-
Method Detail
-
onEnteringEnvironment
void onEnteringEnvironment(Map<String,Object> environmentInformation)
Hook executed when entering the background environment- Parameters:
environmentInformation- the environment information.
-
onLeavingEnvironment
void onLeavingEnvironment(Map<String,Object> environmentInformation)
Hook executed when leaving the background environment- Parameters:
environmentInformation- the environment information.
-
-