I have one grails application.In that I have one model class named Book. From any controller if I am calling Book.list(), Book.get(id) and some other hibernate calls like save() I want to authorize using current login user role. If authorization fails i have to throw some error. Is there any plugin available for this. Please give me some idea or suggestion.

link|improve this question

feedback

2 Answers

take a look at: http://www.grails.org/Controllers+-+Interceptors

link|improve this answer
feedback
up vote 0 down vote accepted

We can use the following interceptors in domain classes.Using this we can handle easily

 def onLoad={

    }

  def beforeInsert={

  }

   def beforeDelete={

  }

   def beforeUpdate={

   }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.