forked from eclipse-basyx/basyx-java-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix inoutvariables not being processed in SubmodelService/Repository …
…Controllers :: invokeOperation (eclipse-basyx#396) * Fix inoutvariables not being processed in controller invokeOperation(...) * Apply the fix for the SubmodelRepositoryApiHttpController
- Loading branch information
1 parent
b34d232
commit 1f06ab7
Showing
8 changed files
with
143 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...odelservice/basyx.submodelservice-http/src/test/resources/operation/parameters-inout.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"inputArguments": [ | ||
{ | ||
"value": { | ||
"modelType": "Property", | ||
"valueType": "xs:int", | ||
"value": "5", | ||
"idShort": "input" | ||
} | ||
} | ||
], | ||
"inoutputArguments": [ | ||
{ | ||
"value": { | ||
"modelType": "Property", | ||
"valueType": "xs:int", | ||
"idShort": "stack", | ||
"value": "3" | ||
} | ||
} | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
...submodelservice/basyx.submodelservice-http/src/test/resources/operation/result-inout.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"inoutputArguments": [ | ||
{ | ||
"value": { | ||
"modelType": "Property", | ||
"valueType": "xs:int", | ||
"idShort": "stack", | ||
"value": "8" | ||
} | ||
} | ||
] | ||
} |