Skip to content

Commit

Permalink
Merge pull request #8321 from mandy-chessell/oak2024
Browse files Browse the repository at this point in the history
Additional search methods in Classification Manager OMAS
  • Loading branch information
mandy-chessell authored Aug 5, 2024
2 parents 7051c65 + d32a4fa commit da485e6
Show file tree
Hide file tree
Showing 162 changed files with 10,319 additions and 2,577 deletions.
2 changes: 1 addition & 1 deletion CocoComboGUIDMap.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CoreContentPackGUIDMap.json

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.

315 changes: 0 additions & 315 deletions egeria-platform-report.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public AssetGraphResponse getAssetGraph(String serverName,
if (metadataElement != null)
{
relationships = metadataRelationshipHandler.getAllAttachmentLinks(userId,
metadataElement.getGUID(),
metadataElement.getElementHeader().getGUID(),
anchoredElementParameterName,
OpenMetadataType.OPEN_METADATA_ROOT.typeName,
false,
Expand Down Expand Up @@ -409,6 +409,11 @@ public AssetSearchMatchesListResponse findAssetsInDomain(String
displayNamePropertyCondition.setValue(displayNamePropertyValue);
propertyConditions.add(displayNamePropertyCondition);

displayNamePropertyCondition.setProperty(OpenMetadataProperty.RESOURCE_NAME.name);
displayNamePropertyCondition.setOperator(PropertyComparisonOperator.LIKE);
displayNamePropertyCondition.setValue(displayNamePropertyValue);
propertyConditions.add(displayNamePropertyCondition);

descPropertyCondition.setProperty(OpenMetadataProperty.DESCRIPTION.name);
descPropertyCondition.setOperator(PropertyComparisonOperator.LIKE);
descPropertyCondition.setValue(descPropertyValue);
Expand Down
Loading

0 comments on commit da485e6

Please sign in to comment.