04-03-2008 07:56 AM
04-03-2008 08:38 AM
for (Store store : stores)
{
Reference storeRef = new Reference();
storeRef .setStore(store);
storeRef .setPath("/");
QueryResult qresult = repositoryService. queryChildren(storeRef);
if (qresult.getResultSet().getRows()!=null)
{
for (int i=0; i<qresult.getResultSet().getRows().length; i++)
{
Reference node_child = new Reference();
node_child.setStore(store);
node_child.setUuid(qresult.getResultSet().getRows(i).getNode().getId());
//More will be done with this later…
}
}
}
Is this "correct", or is there a more proper way of obtaining child objects?Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.