}
/*
* Get and store the elements (XPath) to sign of the supporting token
*/
SignedEncryptedElements see = suppToken.getSignedElements();
if (see != null) {
it = see.getXPathExpressions().iterator();
if (wst.sigElements == null) {
wst.sigElements = new ArrayList();
}
while (it.hasNext()) {
wst.sigElements.add((String) it.next());
}
}
/*
* Get and store the elements (XPath) to encrypt of the supporting token
*/
see = suppToken.getEncryptedElements();
if (see != null) {
it = see.getXPathExpressions().iterator();
if (wst.encElements == null) {
wst.encElements = new ArrayList();
}
while (it.hasNext()) {
wst.encElements.add((String) it.next());