in src/main/java/org/apache/sling/jcr/repoinit/impl/NodePropertiesVisitor.java [336:349]
public void visitSetProperties(SetProperties sp) {
for (String nodePath : sp.getPaths()) {
try {
if (nodePath.startsWith(PATH_AUTHORIZABLE)) {
// special case for setting properties on authorizable
setAuthorizableProperties(nodePath, sp.getPropertyLines());
} else {
setNodeProperties(nodePath, sp.getPropertyLines());
}
} catch (RepositoryException e) {
report(e, "Unable to set properties on path [" + nodePath + "]:" + e);
}
}
}