* @param gedxPersonId the identifier of the GEDCOM X person
* @return a ResourceReference instance for the person entry of the identified person
*/
public static ResourceReference toReference(String gedxPersonId) {
ResourceReference reference = new ResourceReference();
reference.setResource( new URI(getPersonReference(gedxPersonId)));
return reference;
}