/**
  * Converts RenditionData to Rendition
  *
  * @param string $objectId
  * @param RenditionDataInterface $renditionData
  * @return RenditionInterface
  */
 public function convertRendition($objectId, RenditionDataInterface $renditionData)
 {
     $rendition = new Rendition($this->session, $objectId);
     $rendition->populate($renditionData);
     return $rendition;
 }