Ignore:
Timestamp:
Oct 21, 2009, 1:04:41 PM (14 years ago)
Author:
duh
Message:

-added initial implementation of authorization code

Location:
trunk/grails-app/services
Files:
1 deleted
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/services/AuthorizationService.groovy

    r14 r15  
    99 * $Date$
    1010 */
    11 public class Authorization {
     11public class AuthorizationService {
    1212    /**
    1313     * class constructor
    1414     * @void
    1515     */
    16     public def Authorization() {
     16    public def AuthorizationService() {
    1717        // debug line for now
    1818        printf("instantiated %s\n",this.class.name);
     
    2323     * @return boolean
    2424     */
    25     def isAuthorized(controller,action) {
     25    public def isAuthorized(controller,action) {
    2626        // logic should be implemented here containing:
    2727        //      user / sessions
Note: See TracChangeset for help on using the changeset viewer.