113 lines
2.7 KiB
PHP
Raw Normal View History

2019-01-13 17:02:15 +01:00
<?php
namespace App\Domain\RightManagement\RightRequestManagement;
use App\Entity\Source\SourceInterface;
use App\Domain\SourceManagement\RequestedSourceInterface;
use App\Domain\UserManagement\UserSourceDirectorInterface;
/**
* @author kevinfrantz
*/
final class RequestedUserRightFacade implements RequestedUserRightFacadeInterface
{
/**
* @var UserSourceDirectorInterface
*/
private $userSourceDirector;
/**
* @var RequestedRightInterface
*/
private $requestedRight;
/**
* @param UserSourceDirectorInterface $userSourceDirector
*/
public function __construct(UserSourceDirectorInterface $userSourceDirector, RequestedRightInterface $requestedRight)
{
$this->userSourceDirector = $userSourceDirector;
$this->requestedRight = $requestedRight;
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\RecieverAttributInterface::setReciever()
*/
public function setReciever(SourceInterface $reciever): void
{
$this->requestedRight->setReciever($reciever);
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\RecieverAttributInterface::getReciever()
*/
public function getReciever(): SourceInterface
{
return $this->userSourceDirector->getUser()->getSource();
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\LayerAttributInterface::setLayer()
*/
public function setLayer(string $layer): void
{
$this->requestedRight->setLayer($layer);
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\TypeAttributInterface::getType()
*/
public function getType(): string
{
return $this->requestedRight->getType();
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\LayerAttributInterface::getLayer()
*/
public function getLayer(): string
{
return $this->requestedRight->getLayer();
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\SourceAttributInterface::getSource()
*/
public function getSource(): SourceInterface
{
return $this->requestedRight->getSource();
}
/**
* {@inheritdoc}
*
* @see \App\Entity\Attribut\TypeAttributInterface::setType()
*/
public function setType(string $type): void
{
$this->requestedRight->setType($type);
}
/**
* {@inheritdoc}
*
* @see \App\Domain\RightManagement\RightRequestManagement\RequestedRightInterface::setRequestedSource()
*/
public function setRequestedSource(RequestedSourceInterface $requestedSource)
{
$this->requestedRight->setRequestedSource($requestedSource);
}
}