Skip to content

Commit

Permalink
Merge pull request #8576 from mandy-chessell/oak2025
Browse files Browse the repository at this point in the history
Add specifications to governance action processes
  • Loading branch information
mandy-chessell authored Jan 13, 2025
2 parents 2a1d298 + 56fa898 commit 6aa4d3c
Show file tree
Hide file tree
Showing 247 changed files with 3,176 additions and 31,342 deletions.
2 changes: 1 addition & 1 deletion EgeriaContentPacksGUIDMap.json

Large diffs are not rendered by default.

56 changes: 0 additions & 56 deletions codeql-v4.yml

This file was deleted.

2 changes: 1 addition & 1 deletion content-packs/APIsContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/ApacheAtlasContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/ApacheKafkaContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoBusinessSystemsArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoClinicalTrialsTemplatesArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoComboArchive.omarchive

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoGovernanceProgramArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoOrganizationArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoSustainabilityArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CocoTypesArchive.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/CoreContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/ObservabilityContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/OpenMetadataTypes.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/PostgresContentPack.omarchive

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content-packs/UnityCatalogContentPack.omarchive

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ dependencies {
implementation project(':open-metadata-implementation:access-services:data-manager:data-manager-client')
implementation project(':open-metadata-implementation:access-services:digital-architecture:digital-architecture-client')
implementation project(':open-metadata-implementation:access-services:digital-service:digital-service-client')
implementation project(':open-metadata-implementation:access-services:governance-engine:governance-engine-client')
implementation project(':open-metadata-implementation:access-services:governance-server:governance-server-client')
implementation project(':open-metadata-implementation:access-services:governance-program:governance-program-client')
implementation project(':open-metadata-implementation:access-services:project-management:project-management-client')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ protected UpdateRequestBody getUpdateRequestBody(String assetManagerGUID,
* @param assetManagerName unique name of software server capability representing the caller
* @param externalIdentifier unique identifier of the element in the external asset manager
* @param externalIdentifierName name of property for the external identifier in the external asset manager
* @param externalIdentifierTypeName the type of element described by this external identifier in the external asset manager
* @param externalIdentifierUsage optional usage description for the external identifier when calling the external asset manager
* @param externalIdentifierSource component that issuing this request.
* @param externalIdentifierKeyPattern pattern for the external identifier within the external asset manager (default is LOCAL_KEY)
Expand All @@ -370,6 +371,7 @@ protected UpdateRequestBody getUpdateRequestBody(String assetManagerGUID,
protected MetadataCorrelationProperties getCorrelationProperties(String assetManagerGUID,
String assetManagerName,
String externalIdentifier,
String externalIdentifierTypeName,
String externalIdentifierName,
String externalIdentifierUsage,
String externalIdentifierSource,
Expand All @@ -389,6 +391,7 @@ protected MetadataCorrelationProperties getCorrelationProperties(String
correlationProperties.setKeyPattern(KeyPattern.LOCAL_KEY);
correlationProperties.setExternalIdentifier(externalIdentifier);
correlationProperties.setExternalIdentifierName(externalIdentifierName);
correlationProperties.setExternalInstanceTypeName(externalIdentifierTypeName);
correlationProperties.setExternalIdentifierUsage(externalIdentifierUsage);
correlationProperties.setExternalIdentifierSource(externalIdentifierSource);
correlationProperties.setKeyPattern(externalIdentifierKeyPattern);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ public B getNewComplexBean(Class<B> beanClass,
InstanceProperties instanceProperties = new InstanceProperties(primaryEntity.getProperties());

bean.setExternalIdentifier(this.removeIdentifier(instanceProperties));
bean.setExternalInstanceTypeName(this.removeIdentifierTypeName(instanceProperties));
bean.setKeyPattern(this.removeKeyPattern(instanceProperties));
bean.setExternalInstanceCreatedBy(this.removeExternalInstanceCreatedBy(instanceProperties));
bean.setExternalInstanceCreationTime(this.removeExternalInstanceCreationTime(instanceProperties));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ void createExternalIdentifier(String userId,
correlationProperties.getExternalIdentifierUsage(),
correlationProperties.getExternalIdentifierSource(),
correlationProperties.getMappingProperties(),
correlationProperties.getExternalInstanceTypeName(),
correlationProperties.getExternalInstanceCreatedBy(),
correlationProperties.getExternalInstanceCreationTime(),
correlationProperties.getExternalInstanceLastUpdatedBy(),
Expand Down

This file was deleted.

Loading

0 comments on commit 6aa4d3c

Please sign in to comment.