public RejectionNote getRejectionNote(Code code) {
   if (code != null)
     for (RejectionNote rjNote : rejectionNoteMap.values()) {
       if (rjNote.getRejectionNoteCode().equalsIgnoreMeaning(code)) return rjNote;
     }
   return null;
 }