Skip to content

Commit

Permalink
Merge pull request #110 from carlos-schmidt/edc-v0.6.4
Browse files Browse the repository at this point in the history
Update extension to be compatible to EDCv0.6.4
  • Loading branch information
carlos-schmidt committed May 18, 2024
2 parents 8e886f9 + b321883 commit 129e374
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ model via the EDC.

## Version compatibility

| Specification | Version |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
| [Eclipse Dataspace Connector](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector) | v0.6.3 |
| Specification | Version |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| [Eclipse Dataspace Connector](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector) | v0.6.4 |
| [AAS - Details of the Asset Administration Shell - Part 1](https://www.plattform-i40.de/IP/Redaktion/EN/Downloads/Publikation/Details_of_the_Asset_Administration_Shell_Part1_V3.html)<br />The exchange of information between partners in the value chain of Industrie 4.0 | AAS Specs – Part 1 V3.0 (final)<br/>(based on [eclipse-aas4j/aas4j](https://github.com/eclipse-aas4j/aas4j)) |

## Repo Structure
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Current development version

Compatibility: **Eclipse Dataspace Connector v0.6.3**
Compatibility: **Eclipse Dataspace Connector v0.6.4**

**New Features**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public AasDataSourceFactory(HttpRequestParamsProvider requestParamsProvider, Mon
}

@Override
public boolean canHandle(DataFlowStartMessage request) {
return AAS_DATA_TYPE.equals(request.getSourceDataAddress().getType());
public String supportedType() {
return AAS_DATA_TYPE;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
javaVersion=17

group=org.eclipse.edc
edcVersion=0.6.3
edcVersion=0.6.4

faaastVersion=1.0.1
aas4jVersion=1.0.2
Expand Down

0 comments on commit 129e374

Please sign in to comment.