private Session sessionFor(User user) {
   currentUserId = user.getUsername();
   return newCmisSessionBuilder()
       .authenticatedBy(user.getUsername(), "1qaz2wsx")
       .onCollection(zeCollection)
       .build();
 }