Interface ProcessesUpdater
-
- All Known Implementing Classes:
SyncFinishedUpdater,SyncStartedUpdater
@Deprecated public interface ProcessesUpdaterDeprecated.since 6.6 - not used anymoreAn interface which allows to update list of processes based on global cockpit event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetEventName()Deprecated.Global event name on whichonEvent(CockpitEvent)will be called.java.lang.StringgetEventScope()Deprecated.Scope of the eventCockpitEvent.SESSION,CockpitEvent.APPLICATIONorCockpitEvent.DESKTOP.java.util.List<java.lang.String>onEvent(com.hybris.cockpitng.core.events.CockpitEvent cockpitEvent)Deprecated.Event callback.
-
-
-
Method Detail
-
getEventName
java.lang.String getEventName()
Deprecated.Global event name on whichonEvent(CockpitEvent)will be called.- Returns:
- name of global event.
-
onEvent
java.util.List<java.lang.String> onEvent(com.hybris.cockpitng.core.events.CockpitEvent cockpitEvent)
Deprecated.Event callback.- Parameters:
cockpitEvent- global cockpit event.- Returns:
- list of cronJob codes for which processes should be updated/added to the processes list.
-
getEventScope
java.lang.String getEventScope()
Deprecated.Scope of the eventCockpitEvent.SESSION,CockpitEvent.APPLICATIONorCockpitEvent.DESKTOP.- Returns:
- event scope.
-
-