Description
Implement a Redirect Filter similar to Redirect Binding Filter as described here:
http://cxf.apache.org/docs/saml-web-sso.html#SAMLWebSSO-RedirectBindingFilter
Configuration could look like this:
<bean id="serviceBean" class="org.apache.cxf.samlp.sso.BookStore"/>
<jaxrs:server address="/app1">
<jaxrs:serviceBeans>
<ref bean="serviceBean"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<ref bean="wsfedFilter"/>
</jaxrs:providers>
</jaxrs:server>
<bean id="wsfedFilter" class="org.apache.cxf.fediz.cxf.jaxrs.FederationFilter">
<property name="fedizConfig" value="fediz_config.xml"/>
</bean>
All the configuration is within the fediz_config.xml as described here:
http://cxf.apache.org/fediz-configuration.html
Integration should be quite easy as all processing logic is in fediz-core.