/**
  *
  */
 public static function find_entity_ajax()
 {
     $search_results = array();
     $entity_data = ArtficatAjaxRequestProcessorUtils::do_before_ajax_find();
     $custom_processor = $entity_data['entity_name'] . 'AjaxRequestProcessor';
     if (class_exists($custom_processor) && method_exists($custom_processor, 'find_entity_ajax')) {
         $search_results = call_user_func($custom_processor . '::find_entity_ajax', $entity_data);
     } else {
         $search_results = EntityAPI::find_entity($entity_data);
     }
     ArtficatAjaxRequestProcessorUtils::do_after_ajax_find($entity_data, $search_results);
 }