Esempio n. 1
0
 public String reserveCopyId(String txnId) throws SVNException {
   FSTransactionRoot txnRoot = getTxnRoot();
   String[] nextIds = txnRoot.readNextIDs();
   String copyId = FSRepositoryUtil.generateNextKey(nextIds[1]);
   myFSFS.writeNextIDs(txnId, nextIds[0], copyId);
   return "_" + nextIds[1];
 }