@TransactionAttribute(TransactionAttributeType.REQUIRED)
public DtoOfMyVersionedEntityWithName sampleMethod(){
MyVersionedEntityWithName e = em.find(MyVersionedEntityWithName.class,0l);
em.lock(e, OPTIMISTIC_FORCE_INCREMENT);
em.flush();
return new DtoOfMyVersionedEntityWithName(e);
}