[java-identity-provider COMMIT] /trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml
noreply at shibboleth.net
noreply at shibboleth.net
Tue Sep 10 21:22:04 EDT 2013
Author: scantor
Date: Tue Sep 10 21:22:04 2013
New Revision: 4763
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4763&view=rev
Log:
Add serializer to flow definitions.
Modified:
trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml
Modified: trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml?rev=4763&r1=4762&r2=4763&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml (original)
+++ trunk/idp-authn-impl/src/main/resources/flows/authn-flow-descriptors.xml Tue Sep 10 21:22:04 2013
@@ -15,10 +15,13 @@
You can turn on and off individual mechanisms by adding and remove them here. Nothing left out will
be used, regardless any other files loaded by the Spring container.
-->
+
+ <bean id="BaseAuthenticationResultSerializer" class="net.shibboleth.idp.authn.BaseAuthenticationResultSerializer" />
<util:list id="AvailableAuthenticationFlows">
<bean c:id="AuthenticationFlow/IPAddress" class="net.shibboleth.idp.authn.AuthenticationFlowDescriptor"
+ p:resultSerializer-ref="BaseAuthenticationResultSerializer"
p:passiveAuthenticationSupported="true"
p:forcedAuthenticationSupported="false"
p:lifetime="PT60S" p:inactivityTimeout="0">
@@ -31,6 +34,7 @@
</bean>
<bean c:id="AuthenticationFlow/RemoteUser" class="net.shibboleth.idp.authn.AuthenticationFlowDescriptor"
+ p:resultSerializer-ref="BaseAuthenticationResultSerializer"
p:passiveAuthenticationSupported="false"
p:forcedAuthenticationSupported="true"
p:lifetime="PT60M" p:inactivityTimeout="PT30M">
@@ -45,6 +49,7 @@
</bean>
<bean c:id="AuthenticationFlow/JAASForm" class="net.shibboleth.idp.authn.AuthenticationFlowDescriptor"
+ p:resultSerializer-ref="BaseAuthenticationResultSerializer"
p:passiveAuthenticationSupported="false"
p:forcedAuthenticationSupported="true"
p:lifetime="PT60M" p:inactivityTimeout="PT30M">
@@ -59,6 +64,7 @@
</bean>
<bean c:id="AuthenticationFlow/JAASBasic" class="net.shibboleth.idp.authn.AuthenticationFlowDescriptor"
+ p:resultSerializer-ref="BaseAuthenticationResultSerializer"
p:passiveAuthenticationSupported="true"
p:forcedAuthenticationSupported="false"
p:lifetime="PT60M" p:inactivityTimeout="PT30M">
More information about the commits
mailing list