[java-identity-provider] branch master updated: Remove legacy RP file from test tree.

Scott Cantor cantor.2 at osu.edu
Tue Feb 19 13:04:03 EST 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=d49e7ffd6e8bfeb5c04b724715df2fa92e95785f

The following commit(s) were added to refs/heads/master by this push:
       new  d49e7ff   Remove legacy RP file from test tree.
d49e7ff is described below

commit d49e7ffd6e8bfeb5c04b724715df2fa92e95785f
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Feb 19 13:04:01 2019 -0500

    Remove legacy RP file from test tree.
---
 .../test/resources/conf/relying-party-legacy.xml   | 81 ----------------------
 1 file changed, 81 deletions(-)

diff --git a/idp-conf/src/test/resources/conf/relying-party-legacy.xml b/idp-conf/src/test/resources/conf/relying-party-legacy.xml
deleted file mode 100644
index 9cd5f01..0000000
--- a/idp-conf/src/test/resources/conf/relying-party-legacy.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    This file is an EXAMPLE configuration file.
-
-    This file specifies relying party dependent configurations for the IdP, for example, whether SAML assertions to a 
-    particular relying party should be signed.  It also includes metadata provider and credential definitions used 
-    when answering requests to a relying party.
--->
-<rp:RelyingPartyGroup xmlns:rp="urn:mace:shibboleth:2.0:relying-party" xmlns:saml="urn:mace:shibboleth:2.0:relying-party:saml" 
-                      xmlns:metadata="urn:mace:shibboleth:2.0:metadata" xmlns:resource="urn:mace:shibboleth:2.0:resource" 
-                      xmlns:security="urn:mace:shibboleth:2.0:security" xmlns:samlsec="urn:mace:shibboleth:2.0:security:saml" 
-                      xmlns:samlmd="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-                      xsi:schemaLocation="urn:mace:shibboleth:2.0:relying-party http://shibboleth.net/schema/idp/shibboleth-relying-party.xsd
-                                          urn:mace:shibboleth:2.0:relying-party:saml http://shibboleth.net/schema/idp/shibboleth-relying-party-saml.xsd
-                                          urn:mace:shibboleth:2.0:metadata http://shibboleth.net/schema/idp/shibboleth-metadata.xsd
-                                          urn:mace:shibboleth:2.0:resource http://shibboleth.net/schema/idp/shibboleth-resource.xsd 
-                                          urn:mace:shibboleth:2.0:security http://shibboleth.net/schema/idp/shibboleth-security.xsd
-                                          urn:oasis:names:tc:SAML:2.0:metadata http://docs.oasis-open.org/security/saml/v2.0/saml-schema-metadata-2.0.xsd">
-                                       
-    <!-- ========================================== -->
-    <!--      Relying Party Configurations          -->
-    <!-- ========================================== -->
-    <rp:AnonymousRelyingParty provider="%{idp.entityID}" defaultSigningCredentialRef="IdPCredential"/>
-    
-    <rp:DefaultRelyingParty provider="%{idp.entityID}" defaultSigningCredentialRef="IdPCredential">
-        <!-- 
-            Each attribute in these profiles configuration is set to its default value,
-            that is, the values that would be in effect if those attributes were not present.
-            We list them here so that people are aware of them (since they seem reluctant to 
-            read the documentation).
-        -->
-        <rp:ProfileConfiguration xsi:type="saml:ShibbolethSSOProfile" includeAttributeStatement="false" 
-                                 assertionLifetime="PT5M" signResponses="always" signAssertions="never"
-                                 includeConditionsNotBefore="true"/>
-                              
-        <rp:ProfileConfiguration xsi:type="saml:SAML1AttributeQueryProfile" assertionLifetime="PT5M" 
-                                 signResponses="conditional" signAssertions="never"
-                                 includeConditionsNotBefore="true"/>
-        
-        <rp:ProfileConfiguration xsi:type="saml:SAML1ArtifactResolutionProfile" signResponses="conditional" 
-                                 signAssertions="never"/>
-        
-        <rp:ProfileConfiguration xsi:type="saml:SAML2SSOProfile" includeAttributeStatement="true" 
-                                 assertionLifetime="PT5M" assertionProxyCount="0" 
-                                 signResponses="always" signAssertions="never" 
-                                 encryptAssertions="conditional" encryptNameIds="never"
-                                 includeConditionsNotBefore="true"/>
-
-        <rp:ProfileConfiguration xsi:type="saml:SAML2ECPProfile" includeAttributeStatement="true" 
-                                 assertionLifetime="PT5M" assertionProxyCount="0" 
-                                 signResponses="always" signAssertions="never" 
-                                 encryptAssertions="conditional" encryptNameIds="never"
-                                 includeConditionsNotBefore="true"/>
-
-        <rp:ProfileConfiguration xsi:type="saml:SAML2AttributeQueryProfile" 
-                                 assertionLifetime="PT5M" assertionProxyCount="0" 
-                                 signResponses="conditional" signAssertions="never" 
-                                 encryptAssertions="conditional" encryptNameIds="never"
-                                 includeConditionsNotBefore="true"/>
-        
-        <rp:ProfileConfiguration xsi:type="saml:SAML2ArtifactResolutionProfile" 
-                                 signResponses="conditional" signAssertions="never" 
-                                 encryptAssertions="conditional" encryptNameIds="never"/>
-
-        <rp:ProfileConfiguration xsi:type="saml:SAML2LogoutRequestProfile"
-                                 signResponses="conditional"/>
-        
-    </rp:DefaultRelyingParty>
-        
-    <!-- ========================================== -->
-    <!--     Security Configurations                -->
-    <!-- ========================================== -->
-    
-    <!--  TODO -->
-    
-    <security:Credential id="IdPCredential" xsi:type="security:X509Filesystem">
-        <security:PrivateKey>%{idp.signing.key}</security:PrivateKey>
-        <security:Certificate>%{idp.signing.cert}</security:Certificate>
-    </security:Credential>
-    
-</rp:RelyingPartyGroup>

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


More information about the commits mailing list