summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/imagemaster/serversession/ServerSession.java
blob: 28b143e0ec96912fc54c8a8c800b1c53b8df8ca6 (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
36
37
38
39
40
41
42
package org.openslx.imagemaster.serversession;

import org.openslx.imagemaster.Globals;

/**
 * Holds the session id of the server and manages the timeout.
 */
public class ServerSession
{
	private static final long TIMEOUT = Long.valueOf( Globals.getSessionTimeoutServer() ) * 1000L;

	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;
	}
}