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