[java-opensaml COMMIT] in /trunk: opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType....
noreply at shibboleth.net
noreply at shibboleth.net
Tue Jul 3 09:00:47 EDT 2012
Author: rdw
Date: Tue Jul 3 09:00:47 2012
New Revision: 3072
URL: http://svn.shibboleth.net/view/java-opensaml?rev=3072&view=rev
Log:
Typo -#setAttribtue becomes #etAttribute
Modified:
trunk/opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType.java
trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeImpl.java
trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeUnmarshaller.java
Modified: trunk/opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType.java?rev=3072&r1=3071&r2=3072&view=diff
==============================================================================
--- trunk/opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType.java (original)
+++ trunk/opensaml-xacml-api/src/main/java/org/opensaml/xacml/policy/AttributeDesignatorType.java Tue Jul 3 09:00:47 2012
@@ -84,7 +84,7 @@
*
* @param id ID of the designated attribute
*/
- public void setAttribtueId(String id);
+ public void setAttributeId(String id);
/**
* Gets the data type of the designated attribute.
Modified: trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeImpl.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeImpl.java?rev=3072&r1=3071&r2=3072&view=diff
==============================================================================
--- trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeImpl.java (original)
+++ trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeImpl.java Tue Jul 3 09:00:47 2012
@@ -88,7 +88,7 @@
}
/** {@inheritDoc} */
- public void setAttribtueId(String id) {
+ public void setAttributeId(String id) {
this.attributeId = prepareForAssignment(this.attributeId, id);
}
Modified: trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeUnmarshaller.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeUnmarshaller.java?rev=3072&r1=3071&r2=3072&view=diff
==============================================================================
--- trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeUnmarshaller.java (original)
+++ trunk/opensaml-xacml-impl/src/main/java/org/opensaml/xacml/policy/impl/AttributeDesignatorTypeUnmarshaller.java Tue Jul 3 09:00:47 2012
@@ -42,7 +42,7 @@
AttributeDesignatorType attributeDesignatorType = (AttributeDesignatorType) xmlObject;
if (attribute.getLocalName().equals(AttributeDesignatorType.ATTRIBUTE_ID_ATTRIB_NAME)){
- attributeDesignatorType.setAttribtueId(StringSupport.trimOrNull(attribute.getValue()));
+ attributeDesignatorType.setAttributeId(StringSupport.trimOrNull(attribute.getValue()));
} else if (attribute.getLocalName().equals(AttributeDesignatorType.DATA_TYPE_ATTRIB_NAME)){
attributeDesignatorType.setDataType(StringSupport.trimOrNull(attribute.getValue()));
} else if (attribute.getLocalName().equals(AttributeDesignatorType.ISSUER_ATTRIB_NAME)){
More information about the commits
mailing list