freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?php
namespace Phem\Environment;
use Phem\Libraries\ImportExport\Json\JsonSerializableObject;
/**
* @author kubapet
*/
class Action extends JsonSerializableObject
{
private $url;
/*
* append
* prepend
* replace
*/
private $type;
private $target;
public function getUrl()
{
return $this->url;
}
public function setUrl($url)
{
$this->url = $url;
}
public function getType()
{
return $this->type;
}
public function setType($type)
{
$this->type = $type;
}
public function getTarget()
{
return $this->target;
}
public function setTarget($target)
{
$this->target = $target;
}
}