| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- /* * ********************************************************************
- * ProxmoxAddon product developed. (Apr 12, 2018)
- * *
- *
- * CREATED BY MODULESGARDEN -> 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 <pawelk@modulesgardne.com>
- */
- 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;
- }
- }
|