public static int[] getAdjacentVersions(ServletConfig config, HttpSession session,
String path, int current) throws Exception {
String[] nodes =
Utils.getSortedChildNodes(
new ResourceServiceClient(config, session).getCollectionContent(path));
int[] versions = new int[2];
versions[0] = -1;
versions[1] = -1;
int previous = -1;
for (String node : nodes) {