<!-- The Pre-auth security filter for SSO -->
<b:bean id="OEPreauthfilter" class="com.progress.rest.security.OERequestHeaderAuthenticationFilter"> <b:property name="enabled" value="false"/> <b:property name="key" value=""/> <b:property name="registryFile" value= "" /> <b:property name="encoding" value="OECP"/> <b:property name="headername" value="X-OE-CLIENT-CONTEXT-ID"/> <b:property name="authenticationManager" ref="authenticationManager" /> </b:bean> <authentication-manager alias="authenticationManager"> <authentication-provider ref="preauthAuthProvider" /> </authentication-manager> <b:bean id="preauthAuthProvider" class="com.progress.rest.security.OEPreAuthenticatedAuthenticationProvider"> <!-- <b:property name="rolePrefix" value="ROLE_" /> <b:property name="enabledAttrName" value="ATTR_ENABLED" /> <b:property name="lockedAttrName" value="ATTR_LOCKED" /> <b:property name="expiredAttrName" value="ATTR_EXPIRED" /> --> </b:bean> |