[java-identity-provider COMMIT] /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValue...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Nov 25 18:49:01 EST 2014
Author: scantor
Date: Tue Nov 25 18:49:01 2014
New Revision: 7017
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7017&view=rev
Log:
IDP-520 - Use of a DOM1 call to set an XML attribute.
Modified:
trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValueMarshaller.java
Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValueMarshaller.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValueMarshaller.java?rev=7017&r1=7016&r2=7017&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValueMarshaller.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/ScopedValueMarshaller.java Tue Nov 25 18:49:01 2014
@@ -36,7 +36,7 @@
ScopedValue scopedValue = (ScopedValue) xmlObject;
if (null != scopedValue.getScopeAttributeName()) {
- domElement.setAttribute(scopedValue.getScopeAttributeName(), scopedValue.getScope());
+ domElement.setAttributeNS(null, scopedValue.getScopeAttributeName(), scopedValue.getScope());
}
}
More information about the commits
mailing list