Pseudonymizing User Data

Pseudonymizing personal data enhances privacy by replacing identifying fields computed for the index (that is, first name and last name of the Person business object) with pseudonyms.

See Also
Running Indexing
Scheduling Partial Indexing
Clearing the Index
Reference Information: MQL Indexing Commands
  1. After a full indexing, register the following Java program to mark business objects for update:

    MQL> add program com.matrixone.search.indexing.update.MarkForUpdatePersons java;

  2. Mark for update all the business objects linked to the persons you want to anonymize:

    MQL> execute program com.matrixone.search.indexing.update.MarkForUpdatePersons -person 'PERSON1_ID’ -person 'PERSON2_ID'

  3. Restart the MQL session or the Tomcat server.
  4. Run an incremental (partial) indexing:

    MQL> start searchindex mode PARTIAL;

  5. Check on your search interface that your documents are properly anonymized.