/**
  * Synchronize server end-point value according to the client end-point
  *
  * @todo add mapping values capability (translation rules for values from server to client end point)
  * 
  * @param __IClientEndPoint $client_end_point
  */
 public function synchronize(__IClientEndPoint &$client_end_point)
 {
     $value = $client_end_point->getValue();
     return $this->_updateComponentProperty($value);
 }