Last change
on this file since 1939 was
1939,
checked in by robert@…, 11 years ago
|
Updated module notification so that it also sends authentication to modules.
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
544 bytes
|
Line | |
---|
1 | /** |
---|
2 | * SessionAuthenticatedUser Domain Class |
---|
3 | * |
---|
4 | * This class represents a user that has logged in from another module, using |
---|
5 | * the session id |
---|
6 | * |
---|
7 | * @author Robert Horlings (robert@isdat.nl) |
---|
8 | * @since 20101022 |
---|
9 | * @package dbnp.authentication |
---|
10 | * |
---|
11 | * Revision information: |
---|
12 | * $Rev: 1939 $ |
---|
13 | * $Author: robert@isdat.nl $ |
---|
14 | * $Date: 2011-06-24 10:56:22 +0000 (vr, 24 jun 2011) $ |
---|
15 | */ |
---|
16 | package dbnp.authentication |
---|
17 | |
---|
18 | class SessionAuthenticatedUser implements Serializable { |
---|
19 | String consumer |
---|
20 | String token |
---|
21 | Date expiryDate |
---|
22 | SecUser secUser |
---|
23 | |
---|
24 | static constraints = { |
---|
25 | token: unique: true |
---|
26 | } |
---|
27 | |
---|
28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.