I need to turn the XML configuration into java how can I do for this part please
<security:http entry-point-ref="samlEntryPoint">
<security:intercept-url pattern="/**"
access="IS_AUTHENTICATED_FULLY" />
<security:custom-filter before="FIRST"
ref="metadataGeneratorFilter" />
<security:custom-filter after="BASIC_AUTH_FILTER"
ref="samlFilter" />
</security:http>
I tried this but i got some error
.anyRequest().access("IS_AUTHENTICATED_FULLY");
Failed to evaluate expression IS_AUTHENTICATED_FULLY
Thanks