in src/main/java/org/apache/sling/jcr/presence/internal/UserPresenter.java [190:196]
private Dictionary<String, Object> serviceProperties(@NotNull final UserInfo userInfo) {
final Dictionary<String, Object> properties = new Hashtable<>();
properties.put(USER_ID, userInfo.userId);
properties.put(DISABLED, userInfo.isDisabled);
properties.put(SYSTEM_USER, userInfo.isSystemUser);
return properties;
}