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 theIEntityTypeFilters that apply to the seeds for the "expand" operation.Gets theILinkTypeFilters that apply to the seeds for the "expand" operation.GetsIRecordInfos 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.GetsStrings that contain the identifiers of the entities that were the seeds for the "expand" operation. The seeds appear in a map whose keys areStrings that contain the identifiers of their originating data stores.- Returns:
- See above.
-
getSeedRecords
Set<IRecordInfo> getSeedRecords()GetsIRecordInfos that contain information about the entity records that were the seeds for the "expand" operation.For performance reasons, the
IRecordInfos 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 theIEntityTypeFilters 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 theILinkTypeFilters 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.