public function intialize_csd_cache_metadata()
 {
     $lists = array('cadre', 'id_type');
     $csd_cache = 'csd_qualify_default';
     $csd_cache_obj = new iHRIS_CSDCache($csd_cache);
     $csd_cache_obj->clearCache();
     return iHRIS_CSDCache::intialize_csd_cache_metadata($csd_cache, $lists);
 }
 public function action_clear($cache_name)
 {
     try {
         $csd_cache = new iHRIS_CSDCache($cache_name);
     } catch (Exception $e) {
         return false;
     }
     $csd_cache->clearCache();
     return true;
 }