Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 271d1b78 authored by Alicja Nicieja's avatar Alicja Nicieja
Browse files

SIMPL-6546 Stub endpoint as EDC callback - an update

parent 8e7e0b51
No related branches found
No related tags found
2 merge requests!10Release 0.0.1,!5SIMPL-6546 Stub endpoint as EDC callback - an update
......@@ -23,7 +23,7 @@ public class ContractNegotiationController {
this.contractNegotiationService = contractNegotiationService;
}
@PostMapping(path = "/signed/{contractAgreementId}/{signed}", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
@PostMapping(path = "/signed/{contractAgreementId}/{signed}", produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<SignedContract> notifyAboutSignedContract(@PathVariable UUID contractAgreementId, @PathVariable boolean signed) {
log.info("POST request to notify about signed contract");
return ResponseEntity.ok(contractNegotiationService.getResponse(contractAgreementId, signed));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment