Map<String, String> properties = (Map<String,String>) exchange.getProperty(ExchangeConstantKeys.E3_MODEL_PROPERTIES.toString());
if(properties == null)
properties = new HashMap<String, String>();
// First add the TDRs from the API
Api api = identity.getApi();
if (api != null)
if(doStatic)
processTdrGenerationRuleStatic(api.getTdrGenerationRule(), exchange, properties);
else
processTdrGenerationRuleDynamic(api.getTdrGenerationRule(), exchange, properties, efType);
// Next add all of the tdr values for the Policies
Iterator<CallDescriptor> it = identity.getCallDescriptors().iterator();
while(it.hasNext()){
CallDescriptor cd = it.next();