Class ALfnDataRootEvent
java.lang.Object
com.luciad.fusion.platform.event.object.ALfnEvent
com.luciad.fusion.platform.event.object.dataroot.ALfnDataRootEvent
- Direct Known Subclasses:
TLfnDataRootCreatedEvent
,TLfnDataRootDeletedEvent
,TLfnDataRootUpdatedEvent
Abstract class that all LuciadFusion events regarding
TLfnDataRoots
will extend.
An ALfnDataRootEvent will always have a valid reference to the affected TLfnDataRoot
, see getDataRoot()
.
The user of an ALfnDataRootEvent will always be the user who did the last update on the data root.
The request of an ALfnDataRootEvent will always be empty.- Since:
- 2022.1
-
Method Summary
Modifier and TypeMethodDescriptionGet theTLfnDataRoot
object for which this event is published.protected String
Get theString
object that is used in theALfnEvent.toString()
method for describing this event's properties.Methods inherited from class com.luciad.fusion.platform.event.object.ALfnEvent
getRequest, getTimestamp, getUser, toString
-
Method Details
-
getDataRoot
Get theTLfnDataRoot
object for which this event is published.- Returns:
- the
TLfnDataRoot
object for which this event is published
-
getPropertiesString
Description copied from class:ALfnEvent
Get theString
object that is used in theALfnEvent.toString()
method for describing this event's properties. Implementing classes can override this method for including specific properties, as a comma-separated list of key-value pairs.
For example, if a subclass has aname
property, the overridden version of this method should be:@Override protected String getPropertiesString() { return super.getPropertiesString() + ", name='" + getName() + "'"; }
- Overrides:
getPropertiesString
in classALfnEvent
- Returns:
- the String that is used in the
ALfnEvent.toString()
method.
-