function save()
 {
     if (!$this->ok) {
         return false;
     }
     $storedParams = $this->_getStoredParams();
     if (!ObjectPersistent::stIsValidParamsValues(get_class($this), $storedParams)) {
         // TODO warning y crear error
         return false;
     }
     return $this->_save();
 }