/** Setup the security service with the administrator user. */
 @Before
 public void setUp() {
   securityService.setCurrent(
       new Person(Person.SYSTEM_ADMINISTRATOR_ID),
       confidentialityLevelService.confidentialityLevelsAsGrantedAuthorities(),
       "ROLE_PERSON_JOURNAL_ENTRY_READ",
       "ROLE_PERSON_JOURNAL_ENTRY_WRITE",
       "ROLE_PERSON_JOURNAL_ENTRY_DELETE",
       CONFIDENTIALITY_LEVEL_PERMISSION.asPermissionString());
 }