Re: [appfuse-user] Running Quartz Jobs on Acegi Secured Methods

2007-03-11 Thread kirankeshav
e user as a property to the job data. > > Then extend your JobDetail to look for the user object in the merged job > data and set up the Authentication object appropriately. > > HTH > BTW not looking at the reference so I don't know if the > names/descriptions of thing

Re: [appfuse-user] Running Quartz Jobs on Acegi Secured Methods

2007-02-26 Thread kirankeshav
Authentication auth = new > UsernamePasswordAuthenticationToken(user, user.getPassword(), > user.getAuthorities()); > SecurityContextHolder.getContext().setAuthentication(auth); > } > > I believe there is also a way to configure acegi itself to run certain > methods a

[appfuse-user] Running Quartz Jobs on Acegi Secured Methods

2007-02-26 Thread kirankeshav
I was wondering if anyone has used Quartz scheduling with Acegi? More specifically, we have secured method invocation via acegi (when a secured method is invoked, the securityServiceInterceptor is invoked and the Authentication object is checked) in our appfuse based application, and have quartz r