Class AbstractInvalidateZoneItemCacheOnWallObserver
- java.lang.Object
- 
- org.ametys.runtime.plugin.component.AbstractLogEnabled
- 
- org.ametys.plugins.workspaces.wall.observers.AbstractInvalidateZoneItemCacheOnWallObserver
 
 
- 
- All Implemented Interfaces:
- Observer,- LogEnabled,- Serviceable
 - Direct Known Subclasses:
- InvalidateZoneItemCacheOnWallContentCommentedObserver,- InvalidateZoneItemCacheOnWallContentObserver
 
 public abstract class AbstractInvalidateZoneItemCacheOnWallObserver extends AbstractLogEnabled implements Observer, Serviceable Observerto invalidate zone item cache of wall content service when a wall content is commented
- 
- 
Field SummaryFields Modifier and Type Field Description protected ContentTypesHelper_contentTypeHelperThe content type helper.protected WorkspaceModuleExtensionPoint_moduleManagerEPWorkspaces module managerprotected ProjectManager_projectManagerWorkspaces project managerprotected PageElementCache_zoneItemCacheThe page element cache- 
Fields inherited from interface org.ametys.core.observation.ObserverMAX_PRIORITY, MIN_PRIORITY
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractInvalidateZoneItemCacheOnWallObserver()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetPriority(Event event)Retrieves the priority to observe this event.
 This can be used to process a supported event before others observers.voidobserve(Event event, Map<String,Object> transientVars)Observes an event.voidservice(ServiceManager manager)- 
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabledgetLogger, setLogger
 
- 
 
- 
- 
- 
Field Detail- 
_contentTypeHelperprotected ContentTypesHelper _contentTypeHelper The content type helper.
 - 
_zoneItemCacheprotected PageElementCache _zoneItemCache The page element cache
 - 
_projectManagerprotected ProjectManager _projectManager Workspaces project manager
 - 
_moduleManagerEPprotected WorkspaceModuleExtensionPoint _moduleManagerEP Workspaces module manager
 
- 
 - 
Constructor Detail- 
AbstractInvalidateZoneItemCacheOnWallObserverpublic AbstractInvalidateZoneItemCacheOnWallObserver() 
 
- 
 - 
Method Detail- 
servicepublic void service(ServiceManager manager) throws ServiceException - Specified by:
- servicein interface- Serviceable
- Throws:
- ServiceException
 
 - 
getPrioritypublic int getPriority(Event event) Description copied from interface:ObserverRetrieves the priority to observe this event.
 This can be used to process a supported event before others observers.- Specified by:
- getPriorityin interface- Observer
- Parameters:
- event- the event.
- Returns:
- the priority where 0 the max priority and Integer.MAX_VALUE the min priority.
 
 - 
observepublic void observe(Event event, Map<String,Object> transientVars) throws Exception Description copied from interface:ObserverObserves an event.- Specified by:
- observein interface- Observer
- Parameters:
- event- the event.
- transientVars- transientVars passed from one Observer to another when processing a single Event. This may allow optimizations between observers.
- Throws:
- Exception- if an error occurs. All exceptions will be logged but not propagated, as the observation mechanism should never fail.
 
 
- 
 
-