{
XmlCursor cursor = conditions.newCursor();
cursor.push();
if (cursor.toChild(OMA_COMMON_POLICY, "external-list"))
{
ExternalList list = (ExternalList) cursor.getObject();
for (int i = 0; i < list.getEntryArray().length; i++)
{
String anchor = list.getEntryArray(i).getAnc();
if (match(anchor, subscriberAor))
return true;
}
}
cursor.pop();