ProviderAttributeType pAttribType = iter.next();
if (pAttribType.getName().equals("isOutpatientDoctor")) {
ProviderAttribute pAttrib = new ProviderAttribute();
pAttrib.setValue(true);
pAttrib.setAttributeType(pAttribType);
provider.addAttribute(pAttrib);
break;
}
}
}
Context.getPersonService().savePerson(person);