public RecordingEntity update(@PathParam("id") String id, RecordingEntity recording) {
try {
transactionManager.begin();
recording.setLastUpdated(new Date());
recording.setLastUpdatedBy(super.CHANGED_BY);
RecordingEntity updatedEntity = super.updateEntity(id, recording);
getRepository().refresh(updatedEntity);
return new CopyHelper().copy(updatedEntity, Expose.class);
}catch (RuntimeException e) {
transactionManager.setRollbackOnly();
throw e;