http://modulesgarden.com * CONTACT -> contact@modulesgarden.com * * * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the * inclusion of the above copyright notice. This software or any other * copies thereof may not be provided or otherwise made available to any * other person. No title to and ownership of the software is hereby * transferred. * * * ******************************************************************** */ namespace MGProvision\Proxmox\v2\models; /** * Description of MounPoint * * @author Pawel Kopec */ class Network extends AbstractObject { protected $path; protected $iface; protected $type; protected $active; protected $method; protected $families; protected $exists; protected $method6; protected $priority; protected $address; protected $gateway; public function getPath() { return $this->path; } public function setPath($path) { $this->path = $path; return $this; } public function getIface() { return $this->iface; } public function getType() { return $this->type; } public function getActive() { return $this->active; } public function getMethod() { return $this->method; } public function getFamilies() { return $this->families; } public function getExists() { return $this->exists; } public function getMethod6() { return $this->method6; } public function getPriority() { return $this->priority; } public function setIface($iface) { $this->iface = $iface; return $this; } public function setType($type) { $this->type = $type; return $this; } public function setActive($active) { $this->active = $active; return $this; } public function setMethod($method) { $this->method = $method; return $this; } public function setFamilies($families) { $this->families = $families; return $this; } public function setExists($exists) { $this->exists = $exists; return $this; } public function setMethod6($method6) { $this->method6 = $method6; return $this; } public function setPriority($priority) { $this->priority = $priority; return $this; } public function getAddress() { return $this->address; } public function getGateway() { return $this->gateway; } public function setAddress($address) { $this->address = $address; return $this; } public function setGateway($gateway) { $this->gateway = $gateway; return $this; } }