Changeset 15 for trunk/grails-app/services
- Timestamp:
- Oct 21, 2009, 1:04:41 PM (14 years ago)
- Location:
- trunk/grails-app/services
- Files:
-
- 1 deleted
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/AuthorizationService.groovy
r14 r15 9 9 * $Date$ 10 10 */ 11 public class Authorization {11 public class AuthorizationService { 12 12 /** 13 13 * class constructor 14 14 * @void 15 15 */ 16 public def Authorization () {16 public def AuthorizationService() { 17 17 // debug line for now 18 18 printf("instantiated %s\n",this.class.name); … … 23 23 * @return boolean 24 24 */ 25 def isAuthorized(controller,action) {25 public def isAuthorized(controller,action) { 26 26 // logic should be implemented here containing: 27 27 // user / sessions
Note: See TracChangeset
for help on using the changeset viewer.