| Modifier and Type | Method and Description |
|---|---|
void |
OMRSTopicListenerBase.processClassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new classification has been added to an entity.
|
void |
OMRSTopicListenerBase.processDeclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A classification has been removed from an entity.
|
void |
OMRSTopicListenerBase.processDeletedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted.
|
void |
OMRSTopicListenerBase.processDeletePurgedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted and purged in a single action.
|
void |
OMRSTopicListenerBase.processNewEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new entity has been created.
|
void |
OMRSTopicListenerBase.processReclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing classification has been changed on an entity.
|
void |
OMRSTopicListenerBase.processRefreshEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A remote repository in the cohort has sent entity details in response to a refresh request.
|
void |
OMRSTopicListenerBase.processReHomedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalHomeMetadataCollectionId,
EntityDetail entity)
An existing entity has changed home repository.
|
void |
OMRSTopicListenerBase.processReIdentifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalEntityGUID,
EntityDetail entity)
The guid of an existing entity has been changed to a new value.
|
void |
OMRSTopicListenerBase.processRestoredEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A deleted entity has been restored to the state it was before it was deleted.
|
void |
OMRSTopicListenerBase.processReTypedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
TypeDefSummary originalTypeDefSummary,
EntityDetail entity)
An existing entity has had its type changed.
|
void |
OMRSTopicListenerBase.processUndoneEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An update to an entity has been undone.
|
void |
OMRSTopicListenerBase.processUpdatedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail oldEntity,
EntityDetail newEntity)
An existing entity has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
List<EntityDetail> |
OpenMetadataArchiveInstanceStore.getEntities()
Return the list of entities defined in the open metadata archive.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OpenMetadataArchiveInstanceStore.setEntities(List<EntityDetail> entities)
Set up the list of entities defined in the open metadata archive.
|
| Modifier and Type | Method and Description |
|---|---|
abstract EntityDetail |
OMRSMetadataCollection.addEntity(String userId,
String entityTypeGUID,
InstanceProperties initialProperties,
List<Classification> initialClassifications,
InstanceStatus initialStatus)
Create a new entity and put it in the requested state.
|
EntityDetail |
OMRSMetadataCollectionBase.addEntity(String userId,
String entityTypeGUID,
InstanceProperties initialProperties,
List<Classification> initialClassifications,
InstanceStatus initialStatus)
Create a new entity and put it in the requested state.
|
EntityDetail |
OMRSMetadataCollection.addExternalEntity(String userId,
String entityTypeGUID,
String externalSourceGUID,
String externalSourceName,
InstanceProperties initialProperties,
List<Classification> initialClassifications,
InstanceStatus initialStatus)
Save a new entity that is sourced from an external technology.
|
EntityDetail |
OMRSMetadataCollectionBase.addExternalEntity(String userId,
String entityTypeGUID,
String externalSourceGUID,
String externalSourceName,
InstanceProperties initialProperties,
List<Classification> initialClassifications,
InstanceStatus initialStatus)
Save a new entity that is sourced from an external technology.
|
abstract EntityDetail |
OMRSMetadataCollection.classifyEntity(String userId,
String entityGUID,
String classificationName,
InstanceProperties classificationProperties)
Add the requested classification to a specific entity.
|
EntityDetail |
OMRSMetadataCollectionBase.classifyEntity(String userId,
String entityGUID,
String classificationName,
InstanceProperties classificationProperties)
Add the requested classification to a specific entity.
|
abstract EntityDetail |
OMRSMetadataCollection.declassifyEntity(String userId,
String entityGUID,
String classificationName)
Remove a specific classification from an entity.
|
EntityDetail |
OMRSMetadataCollectionBase.declassifyEntity(String userId,
String entityGUID,
String classificationName)
Remove a specific classification from an entity.
|
abstract EntityDetail |
OMRSMetadataCollection.deleteEntity(String userId,
String typeDefGUID,
String typeDefName,
String obsoleteEntityGUID)
Delete an entity.
|
EntityDetail |
OMRSMetadataCollectionBase.deleteEntity(String userId,
String typeDefGUID,
String typeDefName,
String obsoleteEntityGUID)
Delete an entity.
|
abstract EntityDetail |
OMRSMetadataCollection.getEntityDetail(String userId,
String guid)
Return the header, classifications and properties of a specific entity.
|
EntityDetail |
OMRSMetadataCollectionBase.getEntityDetail(String userId,
String guid)
Return the header, classifications and properties of a specific entity.
|
abstract EntityDetail |
OMRSMetadataCollection.getEntityDetail(String userId,
String guid,
Date asOfTime)
Return a historical version of an entity.
|
EntityDetail |
OMRSMetadataCollectionBase.getEntityDetail(String userId,
String guid,
Date asOfTime)
Return a historical version of an entity.
|
abstract EntityDetail |
OMRSMetadataCollection.isEntityKnown(String userId,
String guid)
Returns the entity if the entity is stored in the metadata collection, otherwise null.
|
EntityDetail |
OMRSMetadataCollectionBase.isEntityKnown(String userId,
String guid)
Returns the entity if the entity is stored in the metadata collection, otherwise null.
|
EntityDetail |
OMRSMetadataCollection.reHomeEntity(String userId,
String entityGUID,
String typeDefGUID,
String typeDefName,
String homeMetadataCollectionId,
String newHomeMetadataCollectionId)
Deprecated.
|
EntityDetail |
OMRSMetadataCollection.reHomeEntity(String userId,
String entityGUID,
String typeDefGUID,
String typeDefName,
String homeMetadataCollectionId,
String newHomeMetadataCollectionId,
String newHomeMetadataCollectionName)
Change the home of an existing entity.
|
EntityDetail |
OMRSMetadataCollectionBase.reHomeEntity(String userId,
String entityGUID,
String typeDefGUID,
String typeDefName,
String homeMetadataCollectionId,
String newHomeMetadataCollectionId,
String newHomeMetadataCollectionName)
Change the home of an existing entity.
|
abstract EntityDetail |
OMRSMetadataCollection.reIdentifyEntity(String userId,
String typeDefGUID,
String typeDefName,
String entityGUID,
String newEntityGUID)
Change the guid of an existing entity to a new value.
|
EntityDetail |
OMRSMetadataCollectionBase.reIdentifyEntity(String userId,
String typeDefGUID,
String typeDefName,
String entityGUID,
String newEntityGUID)
Change the guid of an existing entity to a new value.
|
abstract EntityDetail |
OMRSMetadataCollection.restoreEntity(String userId,
String deletedEntityGUID)
Restore the requested entity to the state it was before it was deleted.
|
EntityDetail |
OMRSMetadataCollectionBase.restoreEntity(String userId,
String deletedEntityGUID)
Restore the requested entity to the state it was before it was deleted.
|
abstract EntityDetail |
OMRSMetadataCollection.reTypeEntity(String userId,
String entityGUID,
TypeDefSummary currentTypeDefSummary,
TypeDefSummary newTypeDefSummary)
Change the type of an existing entity.
|
EntityDetail |
OMRSMetadataCollectionBase.reTypeEntity(String userId,
String entityGUID,
TypeDefSummary currentTypeDefSummary,
TypeDefSummary newTypeDefSummary)
Change the type of an existing entity.
|
abstract EntityDetail |
OMRSMetadataCollection.undoEntityUpdate(String userId,
String entityGUID)
Undo the last update to an entity and return the previous content.
|
EntityDetail |
OMRSMetadataCollectionBase.undoEntityUpdate(String userId,
String entityGUID)
Undo the last update to an entity and return the previous content.
|
abstract EntityDetail |
OMRSMetadataCollection.updateEntityClassification(String userId,
String entityGUID,
String classificationName,
InstanceProperties properties)
Update one or more properties in one of an entity's classifications.
|
EntityDetail |
OMRSMetadataCollectionBase.updateEntityClassification(String userId,
String entityGUID,
String classificationName,
InstanceProperties properties)
Update one or more properties in one of an entity's classifications.
|
abstract EntityDetail |
OMRSMetadataCollection.updateEntityProperties(String userId,
String entityGUID,
InstanceProperties properties)
Update selected properties in an entity.
|
EntityDetail |
OMRSMetadataCollectionBase.updateEntityProperties(String userId,
String entityGUID,
InstanceProperties properties)
Update selected properties in an entity.
|
abstract EntityDetail |
OMRSMetadataCollection.updateEntityStatus(String userId,
String entityGUID,
InstanceStatus newStatus)
Update the status for a specific entity.
|
EntityDetail |
OMRSMetadataCollectionBase.updateEntityStatus(String userId,
String entityGUID,
InstanceStatus newStatus)
Update the status for a specific entity.
|
| Modifier and Type | Method and Description |
|---|---|
abstract List<EntityDetail> |
OMRSMetadataCollection.findEntitiesByClassification(String userId,
String entityTypeGUID,
String classificationName,
InstanceProperties matchClassificationProperties,
MatchCriteria matchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities that have the requested type of classifications attached.
|
List<EntityDetail> |
OMRSMetadataCollectionBase.findEntitiesByClassification(String userId,
String entityTypeGUID,
String classificationName,
InstanceProperties matchClassificationProperties,
MatchCriteria matchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities that have the requested type of classifications attached.
|
abstract List<EntityDetail> |
OMRSMetadataCollection.findEntitiesByProperty(String userId,
String entityTypeGUID,
InstanceProperties matchProperties,
MatchCriteria matchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities that match the supplied properties according to the match criteria.
|
List<EntityDetail> |
OMRSMetadataCollectionBase.findEntitiesByProperty(String userId,
String entityTypeGUID,
InstanceProperties matchProperties,
MatchCriteria matchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities that match the supplied properties according to the match criteria.
|
abstract List<EntityDetail> |
OMRSMetadataCollection.findEntitiesByPropertyValue(String userId,
String entityTypeGUID,
String searchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities whose string based property values match the search criteria.
|
List<EntityDetail> |
OMRSMetadataCollectionBase.findEntitiesByPropertyValue(String userId,
String entityTypeGUID,
String searchCriteria,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return a list of entities whose string based property values match the search criteria.
|
abstract List<EntityDetail> |
OMRSMetadataCollection.getRelatedEntities(String userId,
String startEntityGUID,
List<String> entityTypeGUIDs,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return the list of entities that are of the types listed in entityTypeGUIDs and are connected, either directly or
indirectly to the entity identified by startEntityGUID.
|
List<EntityDetail> |
OMRSMetadataCollectionBase.getRelatedEntities(String userId,
String startEntityGUID,
List<String> entityTypeGUIDs,
int fromEntityElement,
List<InstanceStatus> limitResultsByStatus,
List<String> limitResultsByClassification,
Date asOfTime,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Return the list of entities that are of the types listed in entityTypeGUIDs and are connected, either directly or
indirectly to the entity identified by startEntityGUID.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OMRSMetadataCollection.deleteEntityReferenceCopy(String userId,
EntityDetail entity)
Remove a reference copy of the the entity from the local repository.
|
void |
OMRSMetadataCollectionBase.deleteEntityReferenceCopy(String userId,
EntityDetail entity)
Remove a reference copy of the the entity from the local repository.
|
void |
OMRSMetadataCollection.purgeEntityReferenceCopy(String userId,
EntityDetail entity)
Remove a reference copy of the the entity from the local repository.
|
void |
OMRSMetadataCollectionBase.purgeEntityReferenceCopy(String userId,
EntityDetail entity)
Remove a reference copy of the the entity from the local repository.
|
abstract void |
OMRSMetadataCollection.saveEntityReferenceCopy(String userId,
EntityDetail entity)
Save the entity as a reference copy.
|
void |
OMRSMetadataCollectionBase.saveEntityReferenceCopy(String userId,
EntityDetail entity)
Save the entity as a reference copy.
|
void |
OMRSMetadataSecurity.validateUserForEntityClassificationAdd(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName,
InstanceProperties properties)
Tests for whether a specific user should have the right to add a classification to an entity instance
within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityClassificationAdd(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName,
InstanceProperties properties)
Tests for whether a specific user should have the right to add a classification to an entity instance
within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityClassificationDelete(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName)
Tests for whether a specific user should have the right to delete a classification from an entity instance
within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityClassificationDelete(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName)
Tests for whether a specific user should have the right to delete a classification from an entity instance
within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityClassificationUpdate(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName,
InstanceProperties properties)
Tests for whether a specific user should have the right to update the classification for an entity instance
within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityClassificationUpdate(String userId,
String metadataCollectionName,
EntityDetail instance,
String classificationName,
InstanceProperties properties)
Tests for whether a specific user should have the right to update a classification for an entity instance
within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityDelete(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have the right to delete a instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityDelete(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have the right to delete a instance within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityRead(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have read access to a specific instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityRead(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have read access to a specific instance within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityReHoming(String userId,
String metadataCollectionName,
EntityDetail instance,
String newHomeMetadataCollectionId,
String newHomeMetadataCollectionName)
Tests for whether a specific user should have the right to change the home of a instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityReHoming(String userId,
String metadataCollectionName,
EntityDetail instance,
String newHomeMetadataCollectionId,
String newHomeMetadataCollectionName)
Tests for whether a specific user should have the right to change the home of a instance within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityReIdentification(String userId,
String metadataCollectionName,
EntityDetail instance,
String newGUID)
Tests for whether a specific user should have the right to change the guid on a instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityReIdentification(String userId,
String metadataCollectionName,
EntityDetail instance,
String newGUID)
Tests for whether a specific user should have the right to change the guid on a instance within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityReTyping(String userId,
String metadataCollectionName,
EntityDetail instance,
TypeDefSummary newTypeDefSummary)
Tests for whether a specific user should have the right to change the type of a instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityReTyping(String userId,
String metadataCollectionName,
EntityDetail instance,
TypeDefSummary newTypeDefSummary)
Tests for whether a specific user should have the right to change the type of a instance within a repository.
|
void |
OMRSMetadataSecurity.validateUserForEntityUpdate(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have the right to update a instance within a repository.
|
void |
OpenMetadataRepositorySecurity.validateUserForEntityUpdate(String userId,
String metadataCollectionName,
EntityDetail instance)
Tests for whether a specific user should have the right to update a instance within a repository.
|
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
InstanceGraph.returnLinkedEntity(String anchorEntityGUID,
String linkingRelationshipGUID)
Return the entity connected at the far end of an entity's relationship.
|
| Modifier and Type | Method and Description |
|---|---|
List<EntityDetail> |
InstanceGraph.getEntities()
Return the list of all of the entities (vertices/nodes) in the instance graph.
|
| Modifier and Type | Method and Description |
|---|---|
void |
InstanceGraph.setEntities(List<EntityDetail> entityElementList)
Set up the list of entities for this instance graph.
|
| Constructor and Description |
|---|
EntityDetail(EntityDetail templateElement)
Copy/clone constructor properties copied from template.
|
| Constructor and Description |
|---|
InstanceGraph(List<EntityDetail> entities,
List<Relationship> relationships)
Typical Constructor creates a graph with the supplied list of elements.
|
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
OMRSRepositoryHelper.addClassificationToEntity(String sourceName,
EntityDetail entity,
Classification newClassification,
String methodName)
Add a classification to an existing entity.
|
EntityDetail |
OMRSRepositoryHelper.deleteClassificationFromEntity(String sourceName,
EntityDetail entity,
String oldClassificationName,
String methodName)
Return a oldClassification with the header and type information filled out.
|
EntityDetail |
OMRSRepositoryHelper.getNewEntity(String sourceName,
String metadataCollectionId,
InstanceProvenanceType provenanceType,
String userName,
String typeName,
InstanceProperties properties,
List<Classification> classifications)
Return a filled out entity.
|
EntityDetail |
OMRSRepositoryHelper.getSkeletonEntity(String sourceName,
String metadataCollectionId,
InstanceProvenanceType provenanceType,
String userName,
String typeName)
Return an entity with the header and type information filled out.
|
EntityDetail |
OMRSRepositoryHelper.incrementVersion(String userId,
InstanceAuditHeader originalInstance,
EntityDetail updatedInstance)
Changes the control information to reflect an update in an instance.
|
EntityDetail |
OMRSRepositoryHelper.updateClassificationInEntity(String sourceName,
String userName,
EntityDetail entity,
Classification newClassification,
String methodName)
Replace an existing classification with a new one
|
| Modifier and Type | Method and Description |
|---|---|
List<EntityDetail> |
OMRSRepositoryHelper.formatEntityResults(List<EntityDetail> fullResults,
int fromElement,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Use the paging and sequencing parameters to format the results for a repository call that returns a list of
entity instances.
|
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
OMRSRepositoryHelper.addClassificationToEntity(String sourceName,
EntityDetail entity,
Classification newClassification,
String methodName)
Add a classification to an existing entity.
|
EntityDetail |
OMRSRepositoryHelper.deleteClassificationFromEntity(String sourceName,
EntityDetail entity,
String oldClassificationName,
String methodName)
Return a oldClassification with the header and type information filled out.
|
Classification |
OMRSRepositoryHelper.getClassificationFromEntity(String sourceName,
EntityDetail entity,
String classificationName,
String methodName)
Return the names classification from an existing entity.
|
EntityProxy |
OMRSRepositoryHelper.getNewEntityProxy(String sourceName,
EntityDetail entity)
Generate an entity proxy from an entity and its TypeDef.
|
EntityDetail |
OMRSRepositoryHelper.incrementVersion(String userId,
InstanceAuditHeader originalInstance,
EntityDetail updatedInstance)
Changes the control information to reflect an update in an instance.
|
EntityDetail |
OMRSRepositoryHelper.updateClassificationInEntity(String sourceName,
String userName,
EntityDetail entity,
Classification newClassification,
String methodName)
Replace an existing classification with a new one
|
void |
OMRSRepositoryValidator.validateEntityFromStore(String sourceName,
String guid,
EntityDetail entity,
String methodName)
Verify that an entity has been successfully retrieved from the repository and has valid contents.
|
boolean |
OMRSRepositoryValidator.validEntity(String sourceName,
EntityDetail entity)
Test that the supplied entity is valid.
|
| Modifier and Type | Method and Description |
|---|---|
List<EntityDetail> |
OMRSRepositoryHelper.formatEntityResults(List<EntityDetail> fullResults,
int fromElement,
String sequencingProperty,
SequencingOrder sequencingOrder,
int pageSize)
Use the paging and sequencing parameters to format the results for a repository call that returns a list of
entity instances.
|
void |
OMRSRepositoryValidator.validateAtMostOneEntityResult(List<EntityDetail> findResults,
String typeName,
String serviceName,
String methodName)
Validate that either zero or one entities were returned from a find request.
|
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
OMRSInstanceEvent.getEntity()
Return the entity instance (if applicable) or null.
|
EntityDetail |
OMRSInstanceEvent.getOriginalEntity()
Return the original entity instance (if applicable) or null.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OMRSInstanceEventProcessorInterface.processClassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new classification has been added to an entity.
|
abstract void |
OMRSInstanceEventProcessor.processClassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new classification has been added to an entity.
|
void |
OMRSInstanceEventProcessorInterface.processDeclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A classification has been removed from an entity.
|
abstract void |
OMRSInstanceEventProcessor.processDeclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A classification has been removed from an entity.
|
void |
OMRSInstanceEventProcessorInterface.processDeletedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted.
|
abstract void |
OMRSInstanceEventProcessor.processDeletedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted.
|
void |
OMRSInstanceEventProcessorInterface.processDeletePurgedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted and purged in a single action.
|
void |
OMRSInstanceEventProcessor.processDeletePurgedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing entity has been deleted and purged in a single action.
|
void |
OMRSInstanceEventProcessorInterface.processNewEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new entity has been created.
|
abstract void |
OMRSInstanceEventProcessor.processNewEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A new entity has been created.
|
void |
OMRSInstanceEventProcessorInterface.processPurgedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An entity has been permanently removed from the repository.
|
void |
OMRSInstanceEventProcessor.processPurgedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An entity has been permanently removed from the repository.
|
void |
OMRSInstanceEventProcessorInterface.processReclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing classification has been changed on an entity.
|
abstract void |
OMRSInstanceEventProcessor.processReclassifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An existing classification has been changed on an entity.
|
void |
OMRSInstanceEventProcessorInterface.processRefreshEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A remote repository in the cohort has sent entity details in response to a refresh request.
|
abstract void |
OMRSInstanceEventProcessor.processRefreshEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A remote repository in the cohort has sent entity details in response to a refresh request.
|
void |
OMRSInstanceEventProcessorInterface.processReHomedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalHomeMetadataCollectionId,
EntityDetail entity)
An existing entity has changed home repository.
|
abstract void |
OMRSInstanceEventProcessor.processReHomedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalHomeMetadataCollectionId,
EntityDetail entity)
An existing entity has changed home repository.
|
void |
OMRSInstanceEventProcessorInterface.processReIdentifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalEntityGUID,
EntityDetail entity)
The guid of an existing entity has been changed to a new value.
|
abstract void |
OMRSInstanceEventProcessor.processReIdentifiedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
String originalEntityGUID,
EntityDetail entity)
The guid of an existing entity has been changed to a new value.
|
void |
OMRSInstanceEventProcessorInterface.processRestoredEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A deleted entity has been restored to the state it was before it was deleted.
|
abstract void |
OMRSInstanceEventProcessor.processRestoredEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
A deleted entity has been restored to the state it was before it was deleted.
|
void |
OMRSInstanceEventProcessorInterface.processReTypedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
TypeDefSummary originalTypeDef,
EntityDetail entity)
An existing entity has had its type changed.
|
abstract void |
OMRSInstanceEventProcessor.processReTypedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
TypeDefSummary originalTypeDef,
EntityDetail entity)
An existing entity has had its type changed.
|
void |
OMRSInstanceEventProcessorInterface.processUndoneEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An update to an entity has been undone.
|
abstract void |
OMRSInstanceEventProcessor.processUndoneEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail entity)
An update to an entity has been undone.
|
void |
OMRSInstanceEventProcessorInterface.processUpdatedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail oldEntity,
EntityDetail newEntity)
An existing entity has been updated.
|
abstract void |
OMRSInstanceEventProcessor.processUpdatedEntityEvent(String sourceName,
String originatorMetadataCollectionId,
String originatorServerName,
String originatorServerType,
String originatorOrganizationName,
EntityDetail oldEntity,
EntityDetail newEntity)
An existing entity has been updated.
|
| Constructor and Description |
|---|
OMRSInstanceEvent(OMRSInstanceEventType instanceEventType,
EntityDetail entity)
Constructor for instance events related to a change to an entity.
|
OMRSInstanceEvent(OMRSInstanceEventType instanceEventType,
EntityDetail originalEntity,
EntityDetail newEntity)
Constructor for instance events related to a change to an entity where the old version is supplied.
|
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
OMRSEventV1InstanceSection.getEntity() |
EntityDetail |
OMRSEventV1InstanceSection.getOriginalEntity() |
| Modifier and Type | Method and Description |
|---|---|
void |
OMRSEventV1InstanceSection.setEntity(EntityDetail entity) |
void |
OMRSEventV1InstanceSection.setOriginalEntity(EntityDetail originalEntity) |
| Modifier and Type | Method and Description |
|---|---|
EntityDetail |
EntityDetailResponse.getEntity()
Return the resulting entity object.
|
| Modifier and Type | Method and Description |
|---|---|
List<EntityDetail> |
EntityListResponse.getEntities()
Return the list of entities.
|
List<EntityDetail> |
InstanceGraphRequest.getEntityElementList()
Return the list of entities stored in the graph.
|
List<EntityDetail> |
InstanceGraphResponse.getEntityElementList()
Return the list of entities stored in the graph.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EntityDetailResponse.setEntity(EntityDetail entity)
Set up the resulting entity object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EntityListResponse.setEntities(List<EntityDetail> entities)
Set up the list of entities.
|
void |
InstanceGraphRequest.setEntityElementList(List<EntityDetail> entityElementList)
Set up the list of entities stored in the graph.
|
void |
InstanceGraphResponse.setEntityElementList(List<EntityDetail> entityElementList)
Set up the list of entities stored in the graph.
|
Copyright © 2018–2020 ODPi. All rights reserved.