Message212

Author admin
Recipients
Date 2017-06-21.11:15:22
Content
[BitBucket user: Alain Mazy]
[BitBucket date: 2017-06-21.09:15:22]

Dear Salim,

Thanks for the feedback.  I would translate that into 2 'software' requirements:

- we need a way to null tags instead of removing them
- for many UIDs, like the Frame Of Reference UID, we need to make sure we anonymize them the same way along all instances -> we should keep a map that will remember the anonymized UID of each source UID:

```
UID anonymize(UID& sourceUID) {
  // if this is the first time we encouter this sourceUID, generated a new UID and save it in a 'cache'

 // else, returned the cached UID
}
```
We'll need to define the lifetime of this 'cache'.  I would suggest that the cache is reset for each anonymization job.
History
Date User Action Args
2026-07-29 15:51:20adminlinkissue46 messages
2026-07-29 15:51:20admincreate