Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了以下方法来获取主题部分
abstractPolicy.getTarget().getSubjectsSection()
但它不提供任何获取主题信息的方法。那么我可以将它转换为 org.w3c.dom.Node 吗?
谢谢。
在 sun XACML 实现中,虽然getMatchList()方法在类中可用,但在 com/sun/xacml/TargetMatch.java类中不可用com/sun/xacml/TargetMatchGroup.java。所以添加以下方法TargetMatchGroup.java将解决问题:
getMatchList()
com/sun/xacml/TargetMatch.java
com/sun/xacml/TargetMatchGroup.java
TargetMatchGroup.java
public List getMatchList() { return matches; }
主题有一个或多个主题匹配,主题的信息都在主题匹配中。