Skip to content

Latest commit

 

History

History
59 lines (46 loc) · 3.3 KB

File metadata and controls

59 lines (46 loc) · 3.3 KB

SDE Submodules


Description

This is maven package mainly build for supporting different semantic submodels like SerialPartTypization, Batch, AssemblyPartRelationship etc. Each Maven module handled dedicated Submodel and responsible for validation, parsing and transforming of the data.

Currently SDE supports below submodels.

Supported Models

[Product Carbon Footprint(PCF) in Version 6.0.0]

How we can add Submodels?

To add new semantic submodel we have to follow below steps:

  • Create new maven module project under the /modules/sde-submodules folder.

    product-dft-backend -> modules -> sde-submodules -> New_maven_module_project

  • Add dependency of external services like EDC and DigitalTwins into the created submodule project pom.xml file.

  • Provide the schema JSON of new submodel in location of your newly created module at /src/main/resources/submodel-name.json

  • Create package structure org.eclipse.tractusx.sde.submodels.newsubmodel

  • Under created package create java class enxtends SubmodelExtension abstarct class. Provide the method of logic for load json schema file at the run time and override the method of abstarct class submodel.

  • Create another class extends with SubmodelExecutor and override the all abstarct methods as per your need.

  • Create packages for entity, model, mapper, repository, service and steps which we have to implement for the submodel process.

Once your maven module ready just do the clean build and install so submodel will automatically get register and you chan check api /submodels where you can see the registered submodel entry.

[Product Carbon Footprint(PCF) in Version 6.0.0] pcf/pcf.md