You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: providers/provider/src/main/java/org/eclipse/edc/heleade/provider/extension/content/based/api/asset/AssetApiExtension.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public void initialize(ServiceExtensionContext context) {
Copy file name to clipboardExpand all lines: providers/provider/src/main/java/org/eclipse/edc/heleade/provider/extension/content/based/api/asset/AssetJsonObject.java
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
24
24
publicclassAssetJsonObject {
25
25
26
-
privateJsonObjectjsonObject;
26
+
privatefinalJsonObjectjsonObject;
27
27
28
28
/**
29
29
* Constructor for wrapper class
@@ -35,8 +35,4 @@ public AssetJsonObject(JsonObject jsonObject) {
Copy file name to clipboardExpand all lines: providers/provider/src/main/java/org/eclipse/edc/heleade/provider/extension/content/based/api/asset/CbmJsonObject.java
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,12 @@
22
22
*/
23
23
publicclassCbmJsonObject {
24
24
25
-
privateJsonObjectjsonObject;
25
+
privatefinalJsonObjectjsonObject;
26
26
27
27
/**
28
28
* Constructor for wrapper class
29
+
*
30
+
* @param jsonObject object to wrap
29
31
*/
30
32
publicCbmJsonObject(JsonObjectjsonObject) {
31
33
this.jsonObject = jsonObject;
@@ -34,8 +36,4 @@ public CbmJsonObject(JsonObject jsonObject) {
Copy file name to clipboardExpand all lines: providers/provider/src/main/java/org/eclipse/edc/heleade/provider/extension/content/based/api/asset/CbmJsonObjectToAssetJsonObjectTransformer.java
+32-9Lines changed: 32 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,33 @@ public CbmJsonObjectToAssetJsonObjectTransformer() {
Copy file name to clipboardExpand all lines: providers/provider/src/main/java/org/eclipse/edc/heleade/provider/extension/content/based/api/asset/JsonObjectAssetToCbmJsonObjectTransformer.java
0 commit comments