On Thu, 9 Jan 2003 15:09, you wrote: > Sorry, I am making things too complicated.
> Login.java extends SecureAction.java extends > VelocitySecureAction.java SecureAction.java implements isAuthorized() > method as well as doPerform() <---- compiler complains otherwise. Login.java should not be a secure action! Secure actions can only be performed by logged in users and the Login action obviously needs to be performed by users that are not yet logged in. You should extend VelocityAction directly. > But I do not want this turbine_root role to be assigned to every > user. And this is where I got stuck. I am assuming your Screen class extends SecureScreen. Either change the isAuthorized() method in SecureScreen.java to remove any mention of "turbine_root" or make your screen class extend VelocitySecureScreen and write your own isAuthorized() method. -- Rodney -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
