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

noreply at shibboleth.net noreply at shibboleth.net
Wed Aug 15 17:21:17 EDT 2012


Author: putmanb
Date: Wed Aug 15 17:21:17 2012
New Revision: 1586

URL: http://svn.shibboleth.net/view/java-opensaml2?rev=1586&view=rev
Log:
JOST-193: Make the implementation of custom bootstrap code easier, without relying on private data from DefaultBootstrap

Modified:
    branches/REL_2/doc/RELEASE-NOTES.txt
    branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.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=1586&r1=1585&r2=1586&view=diff
==============================================================================
--- branches/REL_2/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_2/doc/RELEASE-NOTES.txt Wed Aug 15 17:21:17 2012
@@ -1,10 +1,11 @@
 Changes in Release 2.5.4
 =============================================
-[JOST-191] - Further Bugfixes to XACML\policy
-[JOST-190] - Backport some bugfixes from OpenSAML3
 [JOST-185] - Defaultbootstrap does not initialize the providers from the WS-Trust and WS-Policy schemas in openws
 [JOST-187] - Velocity initialization code uses an invalid key for the configuration properties set
 [JOST-188] - DefaultBootstrap is unnecessarily calling Velocity singleton initialization
+[JOST-190] - Backport some bugfixes from OpenSAML3
+[JOST-191] - Further Bugfixes to XACML\policy
+[JOST-193] - Make the implementation of custom bootstrap code easier, without relying on private data from DefaultBootstrap
 
 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=1586&r1=1585&r2=1586&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/DefaultBootstrap.java Wed Aug 15 17:21:17 2012
@@ -86,7 +86,7 @@
 
         initializeXMLSecurity();
 
-        initializeXMLTooling(xmlToolingConfigs);
+        initializeXMLTooling();
 
         initializeArtifactBuilderFactories();
 
@@ -157,9 +157,18 @@
             Init.init();
         }
     }
-
+    
     /**
      * Initializes the XMLTooling library with a default set of object providers.
+     * 
+     * @throws ConfigurationException thrown if there is a problem loading the configuration files
+     */
+    protected static void initializeXMLTooling() throws ConfigurationException {
+        initializeXMLTooling(xmlToolingConfigs);
+    }
+
+    /**
+     * Initializes the XMLTooling library with an explicitly supplied set of object providers.
      * 
      * @param providerConfigs list of provider configuration files located on the classpath
      * 



More information about the commits mailing list