public void validate( int rowNumber,
Row row ) throws RepositoryException {
String pathStr = row.getValue("jcr:path").getString();
Path path = path(pathStr);
if (lastPath != null) {
assertThat(path.compareTo(lastPath) >= 0, is(true));
}
lastPath = path;
}
};
}