Firstly, thanx for help and interest.
Unfortunately I don't find the solution in the link you passed me. Let's anaylize this:
First example:
Code:
<bean id="casAuthenticationProvider"
class="org.springframework.security.providers.cas.CasAuthenticationProvider">
<security:custom-authentication-provider />
...
</bean>
This relates to how to register additional provider in the existent Authentication manager.
Another one:
Code:
<security:authentication-manager alias="authenticationManager"/>
<bean id="casProcessingFilter" class="org.springframework.security.ui.cas.CasProcessingFilter">
<security:custom-filter position="CAS_PROCESSING_FILTER"/>
<property name="authenticationManager" ref="authenticationManager"/>
...
</bean>
describes hot to use existent authenticationManager created by namespace within a completely new filter.
What I would like is to use personalized authenticationManager within existent filter or , what would be better, to replace default namespace authenticationManager with my own.
One again, thanx for the reply and sorry for being so blunt. For sure it's written there but I just don't get it. I would be grateful for any explanation.
Best regards,
Jakub