Package lumis.service.rss
Class RssObserver
- java.lang.Object
-
- lumis.portal.event.AbstractPortalEventObserver
-
- lumis.service.rss.RssObserver
-
- All Implemented Interfaces:
IPortalEventObserver
public class RssObserver extends AbstractPortalEventObserver
Observer that update the RSS XML file according to the notifications received.- Since:
- 4.1.0
- Version:
- $Revision: 19767 $ $Date: 2017-01-05 18:35:47 -0200 (Thu, 05 Jan 2017) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RssObserver.GenerateRssXmlTask
Process queue task that generates a RSS xml file.
-
Constructor Summary
Constructors Constructor Description RssObserver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IPortalEventFilter
getEventFilter()
Returns the event filter for this observer.void
onEvent(IPortalEvent ev)
Notifies that an event has been raised.
-
-
-
Method Detail
-
getEventFilter
public IPortalEventFilter getEventFilter()
Description copied from interface:IPortalEventObserver
Returns the event filter for this observer.PortalEventFilters
provides methods for generating commonly used filters.- Specified by:
getEventFilter
in interfaceIPortalEventObserver
- Overrides:
getEventFilter
in classAbstractPortalEventObserver
- Returns:
- a collection of event group identifiers.
- See Also:
PortalEventFilters
-
onEvent
public void onEvent(IPortalEvent ev) throws PortalException
Description copied from interface:IPortalEventObserver
Notifies that an event has been raised. This method will be called only for events that belong to the groups specified by#getExpectedEventGroups()
.Important: The implementation of this method must not be time consuming, as it may impact the overall time response of the portal.
- Parameters:
ev
- the event.- Throws:
PortalException
-
-