source: trunk/grails-app/domain/dbnp/authentication/SessionAuthenticatedUser.groovy @ 1430

Last change on this file since 1430 was 1430, checked in by work@…, 12 years ago
  • set keyword expansion
  • Property svn:keywords set to Rev Author Date
File size: 520 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: 1430 $
13 * $Author: work@osx.eu $
14 * $Date: 2011-01-21 20:05:36 +0000 (vr, 21 jan 2011) $
15 */
16package dbnp.authentication
17
18class SessionAuthenticatedUser {
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.