[java-identity-provider COMMIT] in /trunk: idp-conf/src/main/resources/system/conf/global-system.xml idp-conf/src/mai...

noreply at shibboleth.net noreply at shibboleth.net
Sat Apr 12 20:15:43 EDT 2014


Author: scantor
Date: Sat Apr 12 20:15:43 2014
New Revision: 5715

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5715&view=rev
Log:
Package renaming in opensaml-impl, fixing warnings, adding missing prototype scopes.

Modified:
    trunk/idp-conf/src/main/resources/system/conf/global-system.xml
    trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml
    trunk/idp-conf/src/main/resources/system/conf/security-policy.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-unsolicited-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/attribute-query-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-post-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-redirect-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-unsolicited-beans.xml
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/ExtractSubjectFromRequestTest.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/PopulateBindingAndEndpointContextsTest.java

Modified: trunk/idp-conf/src/main/resources/system/conf/global-system.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/conf/global-system.xml?rev=5715&r1=5714&r2=5715&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/conf/global-system.xml (original)
+++ trunk/idp-conf/src/main/resources/system/conf/global-system.xml Sat Apr 12 20:15:43 2014
@@ -113,7 +113,7 @@
     <bean id="shibboleth.MarshallerFactory" factory-method="getMarshallerFactory" class="org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport" depends-on="shibboleth.OpenSAMLConfig" />
     <bean id="shibboleth.UnmarshallerFactory" factory-method="getUnmarshallerFactory" class="org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport" depends-on="shibboleth.OpenSAMLConfig" />
 
-    <bean id="shibboleth.EndpointResolver" class="org.opensaml.saml.common.binding.DefaultEndpointResolver" />
+    <bean id="shibboleth.EndpointResolver" class="org.opensaml.saml.common.binding.impl.DefaultEndpointResolver" />
 
     <bean id="shibboleth.CookieManager" class="net.shibboleth.utilities.java.support.net.CookieManager"
         p:httpServletRequest-ref="shibboleth.HttpServletRequest" p:httpServletResponse-ref="shibboleth.HttpServletResponse"
@@ -137,7 +137,7 @@
         p:storage-ref="shibboleth.StorageService" p:strict="true" />
 
     <bean id="shibboleth.SAMLArtifactMap" depends-on="shibboleth.StorageService"
-        class="org.opensaml.saml.common.binding.artifact.StorageServiceSAMLArtifactMap"
+        class="org.opensaml.saml.common.binding.artifact.impl.StorageServiceSAMLArtifactMap"
         p:storageService-ref="shibboleth.StorageService" />
     
     <bean id="shibboleth.DefaultIdentifierGenerationStrategy"

Modified: trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml?rev=5715&r1=5714&r2=5715&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml (original)
+++ trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml Sat Apr 12 20:15:43 2014
@@ -70,40 +70,40 @@
     -->
 
     <bean id="shibboleth.Encoders.SAML1PostEncoder"
-          class="org.opensaml.saml.saml1.binding.encoding.HTTPPostEncoder" scope="prototype" init-method=""
+          class="org.opensaml.saml.saml1.binding.encoding.impl.HTTPPostEncoder" scope="prototype" init-method=""
           p:httpServletResponse-ref="shibboleth.HttpServletResponse"
           p:velocityEngine-ref="shibboleth.VelocityEngine" />
 
     <bean id="shibboleth.Encoders.SAML1ArtifactEncoder"
-          class="org.opensaml.saml.saml1.binding.encoding.HTTPArtifactEncoder" scope="prototype" init-method=""
+          class="org.opensaml.saml.saml1.binding.encoding.impl.HTTPArtifactEncoder" scope="prototype" init-method=""
           p:httpServletResponse-ref="shibboleth.HttpServletResponse"
           p:artifactMap-ref="shibboleth.SAMLArtifactMap" />
 
     <bean id="shibboleth.Encoders.SAML1SOAPEncoder"
-          class="org.opensaml.saml.saml1.binding.encoding.HTTPSOAP11Encoder" scope="prototype" init-method=""
+          class="org.opensaml.saml.saml1.binding.encoding.impl.HTTPSOAP11Encoder" scope="prototype" init-method=""
           p:httpServletResponse-ref="shibboleth.HttpServletResponse" />
 
     <bean id="shibboleth.Encoders.SAML2RedirectEncoder"

[... 472 lines stripped ...]


More information about the commits mailing list