/**
  * @return Kuser's full name = first_name + last_name
  */
 public function getFullName()
 {
     if (!$this->getFirstName() && parent::getFullName()) {
         // full_name is deprecated - this is for backward compatibiliy and for migration
         KalturaLog::ALERT('Field [full_name] on object [kuser] is deprecated but still being read');
         return parent::getFullName();
     }
     return trim($this->getFirstName() . ' ' . $this->getLastName());
 }