[java-identity-provider COMMIT] in /trunk/idp-conf/src/main/resources/system: conf/audit-system.xml flows/logout/prop...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Nov 4 18:54:00 EST 2015
Author: scantor
Date: Wed Nov 4 18:53:59 2015
New Revision: 7937
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7937&view=rev
Log:
IDP-224 - Improve logout auditing field handling
Modified:
trunk/idp-conf/src/main/resources/system/conf/audit-system.xml
trunk/idp-conf/src/main/resources/system/flows/logout/propagation/saml2-beans.xml
trunk/idp-conf/src/main/resources/system/flows/logout/propagation/saml2-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-front-abstract-flow.xml
Modified: trunk/idp-conf/src/main/resources/system/conf/audit-system.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/conf/audit-system.xml?rev=7937&r1=7936&r2=7937&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/conf/audit-system.xml (original)
+++ trunk/idp-conf/src/main/resources/system/conf/audit-system.xml Wed Nov 4 18:53:59 2015
@@ -87,6 +87,54 @@
</entry>
<entry>
<key>
+ <util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.IN_RESPONSE_TO"/>
+ </key>
+ <bean class="net.shibboleth.idp.saml.audit.impl.InResponseToAuditExtractor">
+ <constructor-arg>
+ <bean class="com.google.common.base.Functions" factory-method="compose"
+ c:g-ref="shibboleth.MessageLookup.SAMLObject"
+ c:f-ref="shibboleth.MessageContextLookup.Inbound" />
+ </constructor-arg>
+ </bean>
+ </entry>
+ <entry>
+ <key>
+ <util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.STATUS_CODE"/>
+ </key>
+ <bean class="net.shibboleth.idp.saml.audit.impl.StatusCodeAuditExtractor">
+ <constructor-arg>
+ <bean class="com.google.common.base.Functions" factory-method="compose"
+ c:g-ref="shibboleth.MessageLookup.SAMLObject"
+ c:f-ref="shibboleth.MessageContextLookup.Inbound" />
+ </constructor-arg>
+ </bean>
+ </entry>
+ <entry>
+ <key>
+ <util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.SUBSTATUS_CODE"/>
+ </key>
+ <bean class="net.shibboleth.idp.saml.audit.impl.SubStatusCodeAuditExtractor">
+ <constructor-arg>
+ <bean class="com.google.common.base.Functions" factory-method="compose"
+ c:g-ref="shibboleth.MessageLookup.SAMLObject"
+ c:f-ref="shibboleth.MessageContextLookup.Inbound" />
+ </constructor-arg>
+ </bean>
+ </entry>
+ <entry>
+ <key>
+ <util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.STATUS_MESSAGE"/>
+ </key>
+ <bean class="net.shibboleth.idp.saml.audit.impl.StatusMessageAuditExtractor">
+ <constructor-arg>
+ <bean class="com.google.common.base.Functions" factory-method="compose"
+ c:g-ref="shibboleth.MessageLookup.SAMLObject"
+ c:f-ref="shibboleth.MessageContextLookup.Inbound" />
+ </constructor-arg>
+ </bean>
+ </entry>
+ <entry>
+ <key>
<util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.IS_PASSIVE"/>
</key>
<bean class="net.shibboleth.idp.saml.audit.impl.IsPassiveAuditExtractor">
@@ -385,6 +433,18 @@
</constructor-arg>
</bean>
</entry>
+ <entry>
+ <key>
+ <util:constant static-field="net.shibboleth.idp.saml.profile.SAMLAuditFields.SESSION_INDEX"/>
+ </key>
+ <bean class="net.shibboleth.idp.saml.audit.impl.SessionIndexAuditExtractor">
+ <constructor-arg>
+ <bean class="com.google.common.base.Functions" factory-method="compose"
+ c:g-ref="shibboleth.MessageLookup.SAMLObject"
+ c:f-ref="shibboleth.MessageContextLookup.Inbound" />
+ </constructor-arg>
+ </bean>
+ </entry>
</map>
</property>
</bean>
[... 64 lines stripped ...]
More information about the commits
mailing list