[java-opensaml2 COMMIT] in /branches/REL_2: doc/RELEASE-NOTES.txt src/main/java/org/opensaml/DefaultBootstrap.java sr...

noreply at shibboleth.net noreply at shibboleth.net
Thu Nov 8 13:59:38 EST 2012


Author: scantor
Date: Thu Nov  8 13:59:38 2012
New Revision: 1600

URL: http://svn.shibboleth.net/view/java-opensaml2?rev=1600&view=rev
Log:
JOST-197: XML providers for Async Logout extensions

Added:
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/Asynchronous.java   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/AsynchronousBuilder.java   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/AsynchronousImpl.java   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/AsynchronousMarshaller.java   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/AsynchronousUnmarshaller.java   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/impl/package.html   (with props)
    branches/REL_2/src/main/java/org/opensaml/samlext/saml2aslo/package.html   (with props)
    branches/REL_2/src/main/resources/saml2-protocol-aslo-config.xml   (with props)
    branches/REL_2/src/test/java/org/opensaml/samlext/saml2aslo/
    branches/REL_2/src/test/java/org/opensaml/samlext/saml2aslo/AsynchronousTest.java   (with props)
    branches/REL_2/src/test/resources/data/org/opensaml/samlext/saml2aslo/
    branches/REL_2/src/test/resources/data/org/opensaml/samlext/saml2aslo/Asynchronous.xml   (with props)
Modified:
    branches/REL_2/doc/RELEASE-NOTES.txt
    branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java
    branches/REL_2/src/main/java/org/opensaml/common/xml/SAMLConstants.java

Modified: branches/REL_2/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/doc/RELEASE-NOTES.txt?rev=1600&r1=1599&r2=1600&view=diff
==============================================================================
--- branches/REL_2/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_2/doc/RELEASE-NOTES.txt Thu Nov  8 13:59:38 2012
@@ -11,6 +11,7 @@
 [JOST-194] - org.opensaml.ESAPISecurityConfig should use singleton pattern like the default ESAPI reference class
 [JOST-195] - Use system property-based override for our custom ESAPI config rather than ESAPI locator class call 
 [JOST-196] - On MetadataProviderCredentialResolver, expose the MetadataProvider used to construct the resolver
+[JOST-197] - XML providers for Async Logout extensions
 
 Changes in Release 2.5.3
 =============================================

Modified: branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java?rev=1600&r1=1599&r2=1600&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java Thu Nov  8 13:59:38 2012
@@ -56,6 +56,7 @@
         "/saml2-metadata-attr-config.xml",
         "/saml2-metadata-idp-discovery-config.xml",
         "/saml2-metadata-ui-config.xml",
+        "/saml2-protocol-aslo-config.xml",
         "/saml2-protocol-thirdparty-config.xml",
         "/saml2-metadata-query-config.xml", 
         "/saml2-assertion-delegation-restriction-config.xml",    

Modified: branches/REL_2/src/main/java/org/opensaml/common/xml/SAMLConstants.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/common/xml/SAMLConstants.java?rev=1600&r1=1599&r2=1600&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/common/xml/SAMLConstants.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/common/xml/SAMLConstants.java Thu Nov  8 13:59:38 2012
@@ -47,8 +47,14 @@
     /**  XML Signature schema Id. */
     public static final String XMLSIG_SCHEMA_LOCATION = SCHEMA_DIR + "xmldsig-core-schema.xsd";
     
+    /**  XML Signature 1.1 schema Id. */
+    public static final String XMLSIG11_SCHEMA_LOCATION = SCHEMA_DIR + "xmldsig11-schema.xsd";
+    
     /** XML Encryption schema Id. */
     public static final String XMLENC_SCHEMA_LOCATION = SCHEMA_DIR + "xenc-schema.xsd";
+    
+    /** XML Encryption 1.1 schema Id. */
+    public static final String XMLENC11_SCHEMA_LOCATION = SCHEMA_DIR + "xenc11-schema.xsd";
 
     //****************************
     //    SOAP
@@ -140,11 +146,20 @@
     /** SAML 2.0 Protocol Third-party extension schema Id. */
     public static final String SAML20PTHRPTY_SCHEMA_LOCATION = SCHEMA_DIR + "sstc-saml-protocol-ext-thirdparty.xsd";
     
-    /** SAML 2.0 Protocol XML Namespace. */
+    /** SAML 2.0 Protocol Third-party extension XML Namespace. */
     public static final String SAML20PTHRPTY_NS = "urn:oasis:names:tc:SAML:protocol:ext:third-party";
     
-    /** SAML 2.0 Protocol QName prefix. */
+    /** SAML 2.0 Protocol Third-party extension QName prefix. */

[... 14 lines stripped ...]


More information about the commits mailing list