// Next add all of the tdr values for the Policies
Iterator<CallDescriptor> it = identity.getCallDescriptors().iterator();
while(it.hasNext()){
CallDescriptor cd = it.next();
Policy policy = cd.getPolicy();
if(policy != null){
if(doStatic)
processTdrGenerationRuleStatic(policy.getTdrGenerationRule(), exchange, properties);
else
processTdrGenerationRuleDynamic(policy.getTdrGenerationRule(), exchange, properties, efType);
}
}
// Finally add the values from the Auth
Auth auth = identity.getAuth();