Skip to content
Snippets Groups Projects
Commit 0d6df831 authored by felmer's avatar felmer
Browse files

LMS-740 Add default constructor (needed by beanlib)

SVN: 9795
parent 6d9d974a
No related branches found
No related tags found
No related merge requests found
...@@ -30,12 +30,16 @@ public class BasicSession implements Serializable ...@@ -30,12 +30,16 @@ public class BasicSession implements Serializable
protected static final String DATE_FORMAT_PATTERN = "yyyy-MM-dd HH:mm:ss"; protected static final String DATE_FORMAT_PATTERN = "yyyy-MM-dd HH:mm:ss";
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private final String sessionToken; private String sessionToken;
private final String userName; private String userName;
private final Principal principal; private Principal principal;
private final String remoteHost; private String remoteHost;
private final long sessionStart; private long sessionStart;
private final int sessionExpirationTime; private int sessionExpirationTime;
public BasicSession()
{
}
/** /**
* Creates an instance from the specified session token, user name, principal, remoteHost, and * Creates an instance from the specified session token, user name, principal, remoteHost, and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment