use of org.hl7.fhir.dstu3.model.ContactPoint in project gpconnect-demonstrator by nhsconnect.
the class StaticElementsHelper method getValidTelecom.
public ContactPoint getValidTelecom() {
ContactPoint orgTelCom = new ContactPoint();
Extension extension = new Extension("testurl");
orgTelCom.addExtension(extension);
orgTelCom.setSystem(ContactPointSystem.PHONE);
orgTelCom.setUse(ContactPointUse.WORK);
orgTelCom.setValue("telecomVal");
return orgTelCom;
}
Aggregations