protected HtmlData getOspAdminNameInquiryUrl(Award award) {
   KcPerson ospAdministrator = award.getOspAdministrator();
   if (ospAdministrator != null) {
     final KcPerson inqBo =
         this.kcPersonService.getKcPersonByPersonId(ospAdministrator.getPersonId());
     return super.getInquiryUrl(inqBo, PERSON_ID);
   } else {
     return null;
   }
 }