Last change
on this file since 16 was
16,
checked in by duh, 13 years ago
|
-set keyword expansion
|
-
Property svn:keywords set to
Date Author Rev
|
File size:
556 bytes
|
Rev | Line | |
---|
[15] | 1 | /** |
---|
| 2 | * Authentorization / Authentication User Domain Class |
---|
| 3 | * @Author Jeroen Wesbeek |
---|
| 4 | * @Since 20091020 |
---|
| 5 | * @package Authorization |
---|
| 6 | * @see Authorization.groovy |
---|
| 7 | * @see BaseController.groovy |
---|
| 8 | * |
---|
| 9 | * Revision information: |
---|
| 10 | * $Rev: 16 $ |
---|
| 11 | * $Author: duh $ |
---|
| 12 | * $Date: 2009-10-21 11:07:28 +0000 (wo, 21 okt 2009) $ |
---|
| 13 | */ |
---|
| 14 | class AuthUser { |
---|
| 15 | // define many to many relationship with groups |
---|
| 16 | static belongsTo = AuthGroup; |
---|
| 17 | static hasMany = [ groups: AuthGroup ]; |
---|
| 18 | |
---|
| 19 | String username; |
---|
| 20 | String password; |
---|
| 21 | String firstname; |
---|
| 22 | String lastname; |
---|
| 23 | String email; |
---|
| 24 | |
---|
| 25 | //static constraints = {} |
---|
| 26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.