in src/main/java/org/apache/sling/clam/internal/ClamUtil.java [62:72]
public static Map<String, Object> properties(@NotNull final String path, @Nullable final Integer index, @Nullable final String userId) {
final Map<String, Object> properties = new HashMap<>();
properties.put(PROPERTY_PATH, path);
if (index != null) {
properties.put(VALUE_INDEX, index);
}
if (userId != null) {
properties.put(USER_ID, userId);
}
return properties;
}