Class ConvertPageEvent2MinisitePageEventObserver
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.plugins.workspaces.events.AbstractConvertMinisiteEventObserver
-
- org.ametys.plugins.workspaces.events.ConvertPageEvent2MinisitePageEventObserver
-
- All Implemented Interfaces:
Observer,LogEnabled,Serviceable
public class ConvertPageEvent2MinisitePageEventObserver extends AbstractConvertMinisiteEventObserver
ThisObserverconverts Page events to minisite page events if needed
-
-
Field Summary
Fields Modifier and Type Field Description protected static Map<String,String>_EVENTS_ID_CONVERSIONMap for events id conversion-
Fields inherited from class org.ametys.plugins.workspaces.events.AbstractConvertMinisiteEventObserver
_observationManager, _projectManager
-
Fields inherited from interface org.ametys.core.observation.Observer
MAX_PRIORITY, MIN_PRIORITY
-
-
Constructor Summary
Constructors Constructor Description ConvertPageEvent2MinisitePageEventObserver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Project_getProject(PagesContainer page)Get the project the page belongsvoidobserve(Event event, Map<String,Object> transientVars)Observes an event.voidservice(ServiceManager serviceManager)booleansupports(Event event)Checks if the event is supported.-
Methods inherited from class org.ametys.plugins.workspaces.events.AbstractConvertMinisiteEventObserver
getPriority, isMinisitePage
-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
_EVENTS_ID_CONVERSION
protected static final Map<String,String> _EVENTS_ID_CONVERSION
Map for events id conversion
-
-
Constructor Detail
-
ConvertPageEvent2MinisitePageEventObserver
public ConvertPageEvent2MinisitePageEventObserver()
-
-
Method Detail
-
service
public void service(ServiceManager serviceManager) throws ServiceException
- Specified by:
servicein interfaceServiceable- Overrides:
servicein classAbstractConvertMinisiteEventObserver- Throws:
ServiceException
-
supports
public boolean supports(Event event)
Description copied from interface:ObserverChecks if the event is supported. If true, the observe(Event) method will be called.- Parameters:
event- the event.- Returns:
truefor observing this event,falseotherwise.
-
observe
public void observe(Event event, Map<String,Object> transientVars) throws Exception
Description copied from interface:ObserverObserves an event.- 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.
-
_getProject
protected Project _getProject(PagesContainer page)
Get the project the page belongs- Parameters:
page- the page- Returns:
- the project or null if the page does not belong to a project
-
-