I have tried following method to get subject section

abstractPolicy.getTarget().getSubjectsSection()

but from that it dosen't provide any methods to get subject's information. So can I convert it to org.w3c.dom.Node ?

Thanks.

link|improve this question
What API? SunXACML? – martijno Feb 28 at 20:16
feedback

1 Answer

up vote 2 down vote accepted

In sun XACML implementation, although "getMatchList()" method is available in com/sun/xacml/TargetMatch.java class it doesn't available in com/sun/xacml/TargetMatchGroup.java class. So adding following method to the TargetMatchGroup.java will solve the problem.

public List getMatchList()
{
    return matches;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.