public ContentEncryptedElementsAssertionState(AbstractSecurityAssertion assertion, boolean asserted) {
super(assertion, asserted);
ContentEncryptedElements contentEncryptedElements = (ContentEncryptedElements) assertion;
for (int i = 0; i < contentEncryptedElements.getXPaths().size(); i++) {
XPath xPath = contentEncryptedElements.getXPaths().get(i);
List<QName> elements = PolicyUtils.getElementPath(xPath);
pathElements.add(elements);
}
}