public function getMetaModel()
{
$factory = $this->container->getFactory();
$metaModel = $factory->getMetaModel($factory->translateIdToMetaModelName($this->data['pid']));
if ($metaModel === null) {
throw new \RuntimeException('Could not retrieve MetaModel with id ' . $this->data['pid']);
}
return $metaModel;
}