for (String path : paths) {
try {
node = currentUserSession.getNode(path);
} catch (RepositoryException e) {
logger.error(e.toString(), e);
throw new GWTJahiaServiceException(
new StringBuilder(path).append(" could not be accessed :\n").append(e.toString()).toString());
}
try {
NodeIterator usages = node.getSharedSet();
while (usages.hasNext()) {