source: trunk/grails-app/domain/AuthRole.groovy @ 15

Last change on this file since 15 was 15, checked in by duh, 13 years ago

-added initial implementation of authorization code

File size: 468 bytes
Line 
1/**
2 * Authentorization / Authentication Role 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$
11 * $Author$
12 * $Date$
13 */
14class AuthRole {
15    // define many to many relationship with AuthAction
16    static  hasMany = [ actions: AuthAction ];
17   
18    String  name;
19    String  description;
20   
21    //static constraints = {}
22}
Note: See TracBrowser for help on using the repository browser.