Is there a way to get an uuid as one of the values in a row, when fetching a row from a QueryResults?
I'd like to call;
RowIterator iterator = queryResult.getRows();
while (iterator.hasNext()) {
Row row = iterator.nextRow();
String id = row.getValue(JcrConstants.JCR_UUID).getString();
[...]
}
--
-Tor
