hello good day everyone,
So I have a java code like this
MessageExceptionDTO result = obatService.ObatDelete(obat);
if (result.isSuccess()) {
entity = ShareMethod.getResponse(HttpStatus.OK, result.getMessage());
} else
entity = ShareMethod.getResponse(HttpStatus.NOT_MODIFIED, result.getMessage());
So that's for success code if the application successfully deletes from the database, is there any way to make this in BPEL?