Package com.i2group.disco.audit
Interface IExpandAuditEvent
- All Superinterfaces:
IAuditEvent
An event that was generated during the processing of an "expand" operation against the
Information Store.
IExpandAuditEvent
makes information about the operation available to
the audit logging mechanism.- Since:
- 8.0
-
Method Summary
Modifier and TypeMethodDescriptionGets theIEntityTypeFilter
s that apply to the seeds for the "expand" operation.Gets theILinkTypeFilter
s that apply to the seeds for the "expand" operation.GetsIRecordInfo
s that contain information about the entity records that were the seeds for the "expand" operation.getSeeds()
Deprecated.Methods inherited from interface com.i2group.disco.audit.IAuditEvent
getClientIPAddress, getClientUserAgent, getTimestamp, getUser, getUserId, getUserSecurityGroups, getUserSecurityPermissions, toString
-
Method Details
-
getSeeds
Deprecated.UsegetSeedRecords()
instead.GetsString
s that contain the identifiers of the entities that were the seeds for the "expand" operation. The seeds appear in a map whose keys areString
s that contain the identifiers of their originating data stores.- Returns:
- See above.
-
getSeedRecords
Set<IRecordInfo> getSeedRecords()GetsIRecordInfo
s that contain information about the entity records that were the seeds for the "expand" operation.For performance reasons, the
IRecordInfo
s do not always include labels or security dimension value identifiers for the seed records. In such cases, if you require the additional information, you can use the record and data store identifiers to retrieve the full seed records.- Returns:
- See above.
- Since:
- 9.0
-
getEntityTypeFilters
Set<IEntityTypeFilter> getEntityTypeFilters()Gets theIEntityTypeFilter
s that apply to the seeds for the "expand" operation. The set is empty if there are no entity type filters.- Returns:
- See above.
- Since:
- 9.1
-
getLinkTypeFilters
Set<ILinkTypeFilter> getLinkTypeFilters()Gets theILinkTypeFilter
s that apply to the seeds for the "expand" operation. The set is empty if there are no link type filters.- Returns:
- See above.
- Since:
- 9.1
-
getSeedRecords()
instead.