* @return NoteList containg the list of note records.
*/
public NoteList getNoteList(int individualID, HashMap hashmap) throws AuthorizationFailedException
{
if (!CVUtility.isModuleVisible("Notes", individualID, this.dataSource)) {
throw new AuthorizationFailedException("Notes - ListNote");
}
Integer intStart = (Integer) hashmap.get("startATparam");
Integer intEnd = (Integer) hashmap.get("EndAtparam");
String strSearch = (String) hashmap.get("searchString");