[jboss-cvs] JBossAS SVN: r71575 - projects/security/security-xacml/trunk/jboss-sunxacml/src/main/java/org/jboss/security/xacml/sunxacml.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 1 18:13:13 EDT 2008


Author: anil.saldhana at jboss.com
Date: 2008-04-01 18:13:13 -0400 (Tue, 01 Apr 2008)
New Revision: 71575

Modified:
   projects/security/security-xacml/trunk/jboss-sunxacml/src/main/java/org/jboss/security/xacml/sunxacml/BasicEvaluationCtx.java
Log:
SECURITY-165: use getValues of Attribute

Modified: projects/security/security-xacml/trunk/jboss-sunxacml/src/main/java/org/jboss/security/xacml/sunxacml/BasicEvaluationCtx.java
===================================================================
--- projects/security/security-xacml/trunk/jboss-sunxacml/src/main/java/org/jboss/security/xacml/sunxacml/BasicEvaluationCtx.java	2008-04-01 22:12:31 UTC (rev 71574)
+++ projects/security/security-xacml/trunk/jboss-sunxacml/src/main/java/org/jboss/security/xacml/sunxacml/BasicEvaluationCtx.java	2008-04-01 22:13:13 UTC (rev 71575)
@@ -633,7 +633,7 @@
 
                 // if we got here, then we found a match, so we want to pull
                 // out the values and put them in out list
-                attributes.add(attr.getValue());
+                attributes.addAll(attr.getValues());
             }
         }
 




More information about the jboss-cvs-commits mailing list