author.setOrganisationName("St James Hospital");
return author;
}
public static AuthorPersonUniversal createAuthorJohnManning() {
AuthorPersonUniversal author = new AuthorPersonUniversal();
author.addId(new PersonID()
.setID("112")
.setAssigningOrganisation("TAN01:NORTH EAST LINCOLNSHIRE CARE TRUST")
.setType(PersonIDType.LocalPersonID.code));
author.setJobRoleName(JobRoleName._NR0260);
author.addAddress(new Address()
.addAddressLine("Freshney Green PCC")
.addAddressLine("Carlton Court")
.addAddressLine("Martin Road")
.addAddressLine("Grimsby")
.setPostcode("DN34 4GB")
.setAddressUse(AddressType.WorkPlace.code));
author.addTelephoneNumber(new Telecom("tel:07621846951"));
author.setName(new PersonName()
.setTitle("Dr")
.setGivenName("John")
.setFamilyName("Manning"));
author.setOrganisationId(new OrgID()
.setID("V365F")
.setType(OrgIDType.ODSOrgID.code));
author.setOrganisationName("Freshney Green PCC");
return author;
}