<bean name="/foo/fooPath"
class="org.springframework.aop.framework.ProxyFact oryBean">
<property name="target">
<bean class="org.foo.web.actions.path.SomeAction">
</property>
<property name="interceptorNames">
<list>
<value>securityAdvice</value>
</list>
</property>
</bean>
<bean id="securityAdvice"
class="org.acegisecurity.intercept.method.aopallia nce.MethodSecurityInterceptor">
<property name="validateConfigAttributes" value="true"/>
<property name="authenticationManager" ref="authenticationManager"/>
<property name="accessDecisionManager" ref="accessDecisionManager"/>
<property name="objectDefinitionSource">
org.foo.web.actions.some.SomeAction.*=ROLE_CEO
</property>
</bean>



