Skip to content

Commit

Permalink
Add more information supply chain support
Browse files Browse the repository at this point in the history
Signed-off-by: Mandy Chessell <[email protected]>
  • Loading branch information
mandy-chessell committed Feb 3, 2025
1 parent ab9a54e commit 1f7bd22
Show file tree
Hide file tree
Showing 87 changed files with 3,330 additions and 1,641 deletions.
2 changes: 1 addition & 1 deletion EgeriaContentPacksGUIDMap.json

Large diffs are not rendered by default.

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 @@ -82,7 +82,7 @@ public B getNewRelationshipBean(Class<B> beanClass,
*/
InstanceProperties instanceProperties = new InstanceProperties(relationship.getProperties());

controlFlowProperties.setQualifiedName(this.getQualifiedName(instanceProperties));
controlFlowProperties.setQualifiedName(this.getISCQualifiedName(instanceProperties));
controlFlowProperties.setLabel(this.getLabel(instanceProperties));
controlFlowProperties.setDescription(this.getDescription(instanceProperties));
controlFlowProperties.setGuard(this.getGuard(instanceProperties));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public B getNewRelationshipBean(Class<B> beanClass,
*/
InstanceProperties instanceProperties = new InstanceProperties(relationship.getProperties());

dataFlowProperties.setQualifiedName(this.getQualifiedName(instanceProperties));
dataFlowProperties.setQualifiedName(this.getISCQualifiedName(instanceProperties));
dataFlowProperties.setLabel(this.getLabel(instanceProperties));
dataFlowProperties.setDescription(this.getDescription(instanceProperties));
dataFlowProperties.setFormula(this.getFormula(instanceProperties));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public B getNewRelationshipBean(Class<B> beanClass,
*/
InstanceProperties instanceProperties = new InstanceProperties(relationship.getProperties());

lineageMappingProperties.setQualifiedName(this.getQualifiedName(instanceProperties));
lineageMappingProperties.setQualifiedName(this.getISCQualifiedName(instanceProperties));
lineageMappingProperties.setLabel(this.getLabel(instanceProperties));
lineageMappingProperties.setDescription(this.getDescription(instanceProperties));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public B getNewRelationshipBean(Class<B> beanClass,
*/
InstanceProperties instanceProperties = new InstanceProperties(relationship.getProperties());

processCallProperties.setQualifiedName(this.getQualifiedName(instanceProperties));
processCallProperties.setQualifiedName(this.getISCQualifiedName(instanceProperties));
processCallProperties.setLabel(this.getLabel(instanceProperties));
processCallProperties.setDescription(this.getDescription(instanceProperties));
processCallProperties.setFormula(this.getFormula(instanceProperties));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -993,8 +993,8 @@ private RelationshipElement getRelationshipElement(Relationship relationship,
relationshipElement = new RelationshipElement();

relationshipElement.setRelationshipHeader(elementHeaderConverter.getNewBean(ElementHeader.class, relationship, methodName));
relationshipElement.setEnd1GUID(elementHeaderConverter.getNewBean(ElementHeader.class, relationship.getEntityOneProxy(), methodName));
relationshipElement.setEnd2GUID(elementHeaderConverter.getNewBean(ElementHeader.class, relationship.getEntityTwoProxy(), methodName));
relationshipElement.setEnd1(elementHeaderConverter.getElementStub(ElementHeader.class, relationship.getEntityOneProxy(), methodName));
relationshipElement.setEnd2(elementHeaderConverter.getElementStub(ElementHeader.class, relationship.getEntityTwoProxy(), methodName));

if (relationship.getProperties() != null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1091,8 +1091,8 @@ private RelationshipElement getRelationshipElement(Relationship relation
relationshipElement = new RelationshipElement();

relationshipElement.setRelationshipHeader(elementHeaderConverter.getNewBean(ElementHeader.class, relationship, methodName));
relationshipElement.setEnd1GUID(elementHeaderConverter.getNewBean(ElementHeader.class, relationship.getEntityOneProxy(), methodName));
relationshipElement.setEnd2GUID(elementHeaderConverter.getNewBean(ElementHeader.class, relationship.getEntityTwoProxy(), methodName));
relationshipElement.setEnd1(elementHeaderConverter.getElementStub(ElementHeader.class, relationship.getEntityOneProxy(), methodName));
relationshipElement.setEnd2(elementHeaderConverter.getElementStub(ElementHeader.class, relationship.getEntityTwoProxy(), methodName));

if (relationship.getProperties() != null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public interface ManageSolutions
*
* @param userId calling user
* @param searchString string to find in the properties
* @param addImplementation should details of the implementation of the information supply chain be extracted too?
* @param limitResultsByStatus control the status of the elements to retrieve - default is everything but Deleted
* @param asOfTime repository time to use
* @param sequencingProperty property to use for sequencing order
Expand All @@ -50,6 +51,7 @@ public interface ManageSolutions
*/
List<InformationSupplyChainElement> findInformationSupplyChains(String userId,
String searchString,
boolean addImplementation,
List<ElementStatus> limitResultsByStatus,
Date asOfTime,
SequencingOrder sequencingOrder,
Expand Down
Loading

0 comments on commit 1f7bd22

Please sign in to comment.