Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e7117bcd authored by Alexandre Pocinho's avatar Alexandre Pocinho
Browse files

correct implementation of delete and update method

parent b90c3e46
No related branches found
No related tags found
3 merge requests!10Remove hardcoded mandatory targetSytem + upgrade HAPI FHIR version,!9Implements ITI-104 transaction + external validation,!8Implements ITI-104 features with external validation process
......@@ -117,7 +117,7 @@ public class IhePatientResourceProvider implements IResourceProvider {
* @return FhirBundle that contains the updated patient
*/
@Update
public MethodOutcome update(@ConditionalUrlParam String theConditional, @ResourceParam Patient iti104Patient, HttpServletRequest request) {
public MethodOutcome update(@IdParam IdType theId, @ConditionalUrlParam String theConditional, @ResourceParam Patient iti104Patient, HttpServletRequest request) {
checkIfPatientExist(iti104Patient);
checkIfIdIsPresent(theConditional, iti104Patient);
......@@ -150,7 +150,7 @@ public class IhePatientResourceProvider implements IResourceProvider {
* @return FhirBundle that contains the deletion status
*/
@Delete
public MethodOutcome delete(@ConditionalUrlParam String theConditional, HttpServletRequest request) {
public MethodOutcome delete(@IdParam IdType theId, @ConditionalUrlParam String theConditional, HttpServletRequest request) {
if (theConditional == null || theConditional.isEmpty()) {
throw new UnprocessableEntityException(NO_ID_PROVIDED);
......
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