source:
trunk/grails-app/domain/dbnp/user/User.groovy
@
832
Last change on this file since 832 was 832, checked in by keesvb, 12 years ago | |
---|---|
|
|
File size: 235 bytes |
Line | |
---|---|
1 | |
2 | package dbnp.user |
3 | |
4 | class User extends grails.plugins.nimble.core.UserBase implements Serializable { |
5 | |
6 | // Extend UserBase with your custom values here |
7 | |
8 | def String toString() { |
9 | return username; |
10 | } |
11 | |
12 | long getId() { |
13 | return id; |
14 | } |
15 | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.