[jboss-jira] [JBoss JIRA] Updated: (SECURITY-168) getNodeName(node) should take care of DOM2

Anil Saldhana (JIRA) jira-events at lists.jboss.org
Wed Apr 2 14:05:29 EDT 2008


     [ http://jira.jboss.com/jira/browse/SECURITY-168?page=all ]

Anil Saldhana updated SECURITY-168:
-----------------------------------

      Component/s: jboss-sunxacml
    Fix Version/s: 2.0.2.GA
      Description: 
    private static String getNodeName(Node node)
    {
       String name = node.getLocalName();
       if(name == null)
          name = node.getNodeName();
       return name; 
    } 

  was:

    private static String getNodeName(Node node)
    {
       String name = node.getLocalName();
       if(name == null)
          name = node.getNodeName();
       return name; 
    } 


> getNodeName(node) should take care of DOM2
> ------------------------------------------
>
>                 Key: SECURITY-168
>                 URL: http://jira.jboss.com/jira/browse/SECURITY-168
>             Project: JBoss Security and Identity Management
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: jboss-sunxacml
>            Reporter: Anil Saldhana
>         Assigned To: Anil Saldhana
>             Fix For: 2.0.2.GA
>
>
>     private static String getNodeName(Node node)
>     {
>        String name = node.getLocalName();
>        if(name == null)
>           name = node.getNodeName();
>        return name; 
>     } 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list