blob: e15f86309406ba23c3bba8f957664dd09763b316 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package org.openslx.imagemaster.serversession;
public class ServerSession {
private static final long TIMEOUT = 600L * 1000L; // TODO: config
private long timeOut = 0;
private final ServerUser serverUser;
public ServerSession(final ServerUser serverUser)
{
this.serverUser = serverUser;
this.timeOut = System.currentTimeMillis() + TIMEOUT;
}
public synchronized void refresh()
{
if ( timedOut() )
return; // Don't allow refreshing timed out session
this.timeOut = System.currentTimeMillis() + TIMEOUT;
}
public synchronized boolean timedOut()
{
return System.currentTimeMillis() > this.timeOut;
}
public String getOrganization() {
return serverUser.organization;
}
public String getAddress() {
return serverUser.address;
}
}
|