[java-identity-provider] branch master updated: Add a utility to locate RP metadata.

Scott Cantor cantor.2 at osu.edu
Wed Oct 23 18:14:20 EDT 2019


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=21e5fd5c4849398b187f3a884e9e7ab5e1cb534b

The following commit(s) were added to refs/heads/master by this push:
       new  21e5fd5   Add a utility to locate RP metadata.
21e5fd5 is described below

commit 21e5fd5c4849398b187f3a884e9e7ab5e1cb534b
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Oct 23 18:14:17 2019 -0400

    Add a utility to locate RP metadata.
---
 .../src/main/resources/system/conf/utilities.xml   | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/idp-conf/src/main/resources/system/conf/utilities.xml b/idp-conf/src/main/resources/system/conf/utilities.xml
index eb4fa6e..41d962f 100644
--- a/idp-conf/src/main/resources/system/conf/utilities.xml
+++ b/idp-conf/src/main/resources/system/conf/utilities.xml
@@ -67,21 +67,21 @@
     <bean id="shibboleth.SAML1AuthenticationMethod"
         class="net.shibboleth.idp.saml.authn.principal.AuthenticationMethodPrincipal" abstract="true" />
    
-    <!-- Parent bean for building custom predicates that act on a RP's EntityDescriptor. -->
-    <bean id="shibboleth.Conditions.EntityDescriptor" abstract="true"
-            class="net.shibboleth.utilities.java.support.logic.StrategyIndirectedPredicate">
-        <constructor-arg name="objectStrategy">
-            <bean parent="shibboleth.Functions.Compose">
-                <constructor-arg name="g">
-                    <bean class="org.opensaml.saml.common.messaging.context.navigate.EntityDescriptorLookupFunction" />
-                </constructor-arg>
-                <constructor-arg name="f">
-                    <bean class="net.shibboleth.idp.saml.profile.context.navigate.SAMLMetadataContextLookupFunction" />
-                </constructor-arg>
-            </bean>
+    <!-- Parent bean for accessing relying party's metadata. -->
+    <bean id="shibboleth.EntityDescriptorLookup.RelyingParty" parent="shibboleth.Functions.Compose">
+        <constructor-arg name="g">
+            <bean class="org.opensaml.saml.common.messaging.context.navigate.EntityDescriptorLookupFunction" />
+        </constructor-arg>
+        <constructor-arg name="f">
+            <bean class="net.shibboleth.idp.saml.profile.context.navigate.SAMLMetadataContextLookupFunction" />
         </constructor-arg>
     </bean>
 
+    <!-- Parent bean for building custom predicates that act on a RP's EntityDescriptor. -->
+    <bean id="shibboleth.Conditions.EntityDescriptor" abstract="true"
+        class="net.shibboleth.utilities.java.support.logic.StrategyIndirectedPredicate"
+        c:objectStrategy-ref="shibboleth.EntityDescriptorLookup.RelyingParty" />
+
     <!-- Parent bean for building custom predicates that act on the principal name of the Subject. -->
     <bean id="shibboleth.Conditions.SubjectName" abstract="true"
             class="net.shibboleth.utilities.java.support.logic.StrategyIndirectedPredicate">

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list