Package lumis.doui.source.event
Class SourceUpdateDataEvent
- java.lang.Object
-
- lumis.portal.event.AbstractPortalEvent
-
- lumis.portal.event.AbstractTransactionalPortalEvent
-
- lumis.doui.source.event.SourceUpdateDataEvent
-
- All Implemented Interfaces:
IPortalEvent
- Direct Known Subclasses:
SourcePostUpdateDataEvent
,SourcePreUpdateDataEvent
@StableMinor(version="14.0", sinceVersion="10.4") public class SourceUpdateDataEvent extends AbstractTransactionalPortalEvent
Base event class for source's update data operation.- Since:
- 10.4.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SourceUpdateDataEvent(Source<?> source, IParameters parameters, String originalItemId)
Creates a new event for update of source data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getOriginalItemId()
Returns the item identifier of the data that will be updated.IParameters
getParameters()
Returns the data parameters provided to the update operation.Source<?>
getSource()
Returns the source that triggered this event.-
Methods inherited from class lumis.portal.event.AbstractTransactionalPortalEvent
getSessionConfig, getTransaction
-
Methods inherited from class lumis.portal.event.AbstractPortalEvent
getEventGroups, getOperationType, setEventGroups, setOperationType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface lumis.portal.event.IPortalEvent
toString
-
-
-
-
Constructor Detail
-
SourceUpdateDataEvent
protected SourceUpdateDataEvent(Source<?> source, IParameters parameters, String originalItemId)
Creates a new event for update of source data.- Parameters:
source
- the source.parameters
- the data provided to the update operation as parameters.originalItemId
- the item identifier of the data being updated.- Since:
- 10.4.0
-
-
Method Detail
-
getSource
public Source<?> getSource()
Returns the source that triggered this event.- Returns:
- the source.
- Since:
- 10.4.0
-
getOriginalItemId
public String getOriginalItemId()
Returns the item identifier of the data that will be updated.- Returns:
- the item identifier.
- Since:
- 10.4.0
-
getParameters
public IParameters getParameters()
Returns the data parameters provided to the update operation.- Returns:
- the data to use for update.
- Since:
- 10.4.0
-
-