I have an ID request parameter in my action class, when it is intercepted how can the interceptor read this ID parameter for checking in order to authenticate a user.
Normally the action would set a value in the session. For that use SessionAware. The interceptor only checks the value in the session. The log out action is equally straight forward (removes value from session). – QuaternionDec 4 '12 at 21:40
Don't do the authentication itself in an interceptor. – Dave NewtonDec 4 '12 at 22:18
@DaveNewton I would like to know why it's not best practice authenticating the user in interceptor. Please don't consider it out of topic. – MohanaRao SVDec 5 '12 at 4:45
@DaveNewton users are authenticated using a JNDIRealm linked to LDAP, but I need to check users against a database field (based on an itemID) to see if they have permission to edit the item. They either exist in the database record as a permitted editor or are a member of a AD superuser role group. Let me know your thoughts on this. – user1277546Dec 5 '12 at 7:14
@MohanaRaoSV Interceptors are intended to provide functionality across broad portions of an application. The act of authentication itself is very narrow in scope and belongs in an action or as part of a third-party solution. Checking for the results of authentication is reasonable in an interceptor. – Dave NewtonDec 5 '12 at 12:49