Jackalope\Transport\Jackrabbit\Client::getNodeByIdentifier PHP Метод

getNodeByIdentifier() публичный Метод

{@inheritDoc}
public getNodeByIdentifier ( $uuid )
    public function getNodeByIdentifier($uuid)
    {
        // OPTIMIZE get nodes directly by uuid from backend. needs implementation on jackrabbit
        $path = $this->getNodePathForIdentifier($uuid);
        $data = $this->getNode($path);
        $data->{':jcr:path'} = $path;
        return $data;
    }