Update session for the same user.

This commit is contained in:
Paulo Gustavo Veiga
2012-11-14 20:44:59 -03:00
parent 6560973237
commit 07c8a1d8c7
3 changed files with 8 additions and 1 deletions

View File

@@ -114,6 +114,11 @@ class LockManagerImpl implements LockManager {
return this.lock(mindmap, user, System.nanoTime());
}
@Override
public long generateSession() {
return System.nanoTime();
}
@Override
@NotNull
public LockInfo lock(@NotNull Mindmap mindmap, @NotNull User user, long session) throws WiseMappingException {