Executed after an object was updated.
By default, returns Response.ok
with the encoded, updated object. You may override this method to provide some other behavior.
Source
FutureOr<Response> didUpdateObject(InstanceType object) { return new Response.ok(object); }