[java-opensaml2 COMMIT] in /branches/REL_2: doc/RELEASE-NOTES.txt src/main/java/org/opensaml/samlext/saml2mdui/DiscoH...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Nov 12 19:48:46 EST 2012
Author: scantor
Date: Mon Nov 12 19:48:45 2012
New Revision: 1603
URL: http://svn.shibboleth.net/view/java-opensaml2?rev=1603&view=rev
Log:
JOST-198: Add type registrations and constants to various XMLObjects.
Modified:
branches/REL_2/doc/RELEASE-NOTES.txt
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DiscoHints.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DisplayName.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/InformationURL.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Keywords.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Logo.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/PrivacyStatementURL.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/UIInfo.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/impl/DisplayNameMarshaller.java
branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/impl/PrivacyStatementURLImpl.java
branches/REL_2/src/main/resources/saml2-assertion-delegation-restriction-config.xml
branches/REL_2/src/main/resources/saml2-ecp-config.xml
branches/REL_2/src/main/resources/saml2-metadata-attr-config.xml
branches/REL_2/src/main/resources/saml2-metadata-ui-config.xml
Modified: branches/REL_2/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/doc/RELEASE-NOTES.txt?rev=1603&r1=1602&r2=1603&view=diff
==============================================================================
--- branches/REL_2/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_2/doc/RELEASE-NOTES.txt Mon Nov 12 19:48:45 2012
@@ -12,6 +12,7 @@
[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
+[JOST-198] - Configuration files for XMLObject providers often missing Type registrations
Changes in Release 2.5.3
=============================================
Modified: branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DiscoHints.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DiscoHints.java?rev=1603&r1=1602&r2=1603&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DiscoHints.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DiscoHints.java Mon Nov 12 19:48:45 2012
@@ -43,6 +43,13 @@
/** Default element name. */
public static final QName DEFAULT_ELEMENT_NAME = new QName(MDUI_NS, DEFAULT_ELEMENT_LOCAL_NAME,
MDUI_PREFIX);
+
+ /** Local name of the XSI type. */
+ public static final String TYPE_LOCAL_NAME = "DiscoHintsType";
+
+ /** QName of the XSI type. */
+ public static final QName TYPE_NAME =
+ new QName(UIInfo.MDUI_NS, TYPE_LOCAL_NAME, UIInfo.MDUI_PREFIX);
/**
* The <IPHint> element specifies a set of [CIDR] blocks associated with,
Modified: branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DisplayName.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DisplayName.java?rev=1603&r1=1602&r2=1603&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DisplayName.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/DisplayName.java Mon Nov 12 19:48:45 2012
@@ -18,8 +18,6 @@
package org.opensaml.samlext.saml2mdui;
import javax.xml.namespace.QName;
-
-import org.opensaml.saml2.metadata.LocalizedString;
/**
* DisplayName.
Modified: branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/InformationURL.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/InformationURL.java?rev=1603&r1=1602&r2=1603&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/InformationURL.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/InformationURL.java Mon Nov 12 19:48:45 2012
@@ -19,8 +19,6 @@
import javax.xml.namespace.QName;
-import org.opensaml.saml2.metadata.LocalizedString;
-
/**
* InformationURL.
*
Modified: branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Keywords.java
URL: http://svn.shibboleth.net/view/java-opensaml2/branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Keywords.java?rev=1603&r1=1602&r2=1603&view=diff
==============================================================================
--- branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Keywords.java (original)
+++ branches/REL_2/src/main/java/org/opensaml/samlext/saml2mdui/Keywords.java Mon Nov 12 19:48:45 2012
@@ -42,6 +42,13 @@
[... 247 lines stripped ...]
More information about the commits
mailing list