Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Thanks!

share|improve this question
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). – Quaternion Dec 4 '12 at 21:40
Don't do the authentication itself in an interceptor. – Dave Newton Dec 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 SV Dec 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. – user1277546 Dec 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 Newton Dec 5 '12 at 12:49
show 1 more comment

1 Answer

Use ActionContext for getting parameters map:

Map<String, Object> parameters = ActionContext.getContext().getParameters();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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