}
AccountRequestAttrCollection attrs =
accountService.newAccountRequestAttrCollection(accountRequest.getAccountType());
Map attributes = accountRequest.getAttributes();
for (Iterator itr = attrs.iterator(); itr.hasNext(); ) {
AccountRequestAttr attr = (AccountRequestAttr)itr.next();
Object valueObj = attributes.get(attr.getName());
if (valueObj != null) {
attr.setValue((String)valueObj);
}
}
if (log.isDebugEnabled()) {
log.debug("AccountRequestAttrCollection: \n"+attrs);
}