So if I implement my own CustomAuthenticationProvider, and replace the entry for the daoAuthenticationProvider
<bean id="daoAuthenticationProvider" class=" org.acegisecurity.providers.dao.DaoAuthenticationProvider"> <property name="userDetailsService" ref="userDao"/> <property name="passwordEncoder" ref="passwordEncoder"/> </bean> with my own class, (I'm looking at the code for DaoAuthenticationProvider), I should be able to drop mine neatly in?
