PageRenderTime 51ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 1ms

/module/Provisioning/src/Provisioning/Model/CreationGroup.php

https://gitlab.com/jeann2015/nexus
PHP | 335 lines | 243 code | 82 blank | 10 comment | 0 complexity | 67d9a6ec2d39ae330b52a7113913e925 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace Provisioning\Model;
  8. use Provisioning\InputFilter\CreationGroupInputFilter;
  9. /**
  10. * Description of Group
  11. *
  12. * @author rodolfo
  13. */
  14. class CreationGroup extends CreationGroupInputFilter {
  15. public $id_order;
  16. public $id_user;
  17. public $id_group;
  18. public $id_service_provider;
  19. public $domain;
  20. public $userlimit;
  21. public $groupname;
  22. public $callinglineidname;
  23. public $timezone;
  24. public $contactname;
  25. public $contactnumber;
  26. public $type;
  27. public $createdate;
  28. public $command;
  29. public $protocol;
  30. public $devicename;
  31. public $devicetype;
  32. public $transportprotocol;
  33. public $lastname;
  34. public $firstname;
  35. public $callinglineidlastname;
  36. public $callinglineidfirstname;
  37. public $password;
  38. public $languague;
  39. public $number_empresa;
  40. public $number_grupo;
  41. public $number_usuario;
  42. public $devicelevel;
  43. public $lineport;
  44. public $servicename;
  45. public $username;
  46. public $newpassword;
  47. public $number_activar;
  48. public $name;
  49. public function getcontactnumber() {
  50. return $this->contactnumber;
  51. }
  52. public function setcontactnumber($contactnumber) {
  53. $this->contactnumber = $contactnumber;
  54. }
  55. public function getcallinglineidname() {
  56. return $this->callinglineidname;
  57. }
  58. public function setcallinglineidname($callinglineidname) {
  59. $this->callinglineidname = $callinglineidname;
  60. }
  61. public function getname() {
  62. return $this->name;
  63. }
  64. public function setname($name) {
  65. $this->name = $name;
  66. }
  67. public function getnumber_activar() {
  68. return $this->number_activar;
  69. }
  70. public function setnumber_activar($number_activar) {
  71. $this->number_activar = $number_activar;
  72. }
  73. public function getnewpassword() {
  74. return $this->newpassword;
  75. }
  76. public function setnewpassword($newpassword) {
  77. $this->newpassword = $newpassword;
  78. }
  79. public function getusername() {
  80. return $this->username;
  81. }
  82. public function setusername($username) {
  83. $this->username = $username;
  84. }
  85. public function getservicename() {
  86. return $this->servicename;
  87. }
  88. public function setservicename($servicename) {
  89. $this->servicename = $servicename;
  90. }
  91. public function getlineport() {
  92. return $this->lineport;
  93. }
  94. public function setlineport($lineport) {
  95. $this->lineport = $lineport;
  96. }
  97. public function getdevicelevel() {
  98. return $this->devicelevel;
  99. }
  100. public function setdevicelevel($devicelevel) {
  101. $this->devicelevel = $devicelevel;
  102. }
  103. public function getnumber_usuario() {
  104. return $this->number_usuario;
  105. }
  106. public function setnumber_usuario($number_usuario) {
  107. $this->number_usuario = $number_usuario;
  108. }
  109. public function getnumber_grupo() {
  110. return $this->number_grupo;
  111. }
  112. public function setnumber_grupo($number_grupo) {
  113. $this->number_grupo = $number_grupo;
  114. }
  115. public function getnumber_empresa() {
  116. return $this->number_empresa;
  117. }
  118. public function setnumber_empresa($number_empresa) {
  119. $this->number_empresa = $number_empresa;
  120. }
  121. public function getlanguague() {
  122. return $this->languague;
  123. }
  124. public function setlanguague($languague) {
  125. $this->languague = $languague;
  126. }
  127. public function getpassword() {
  128. return $this->password;
  129. }
  130. public function setpassword($password) {
  131. $this->password = $password;
  132. }
  133. public function getcallinglineidfirstname() {
  134. return $this->callinglineidfirstname;
  135. }
  136. public function setcallinglineidfirstname($callinglineidfirstname) {
  137. $this->callinglineidfirstname = $callinglineidfirstname;
  138. }
  139. public function getcallinglineidlastname() {
  140. return $this->callinglineidlastname;
  141. }
  142. public function setcallinglineidlastname($callinglineidlastname) {
  143. $this->callinglineidlastname = $callinglineidlastname;
  144. }
  145. public function getfirstname() {
  146. return $this->firstname;
  147. }
  148. public function setfirstname($firstname) {
  149. $this->firstname = $firstname;
  150. }
  151. public function getlastname() {
  152. return $this->lastname;
  153. }
  154. public function setlastname($lastname) {
  155. $this->lastname = $lastname;
  156. }
  157. public function gettransportprotocol() {
  158. return $this->transportprotocol;
  159. }
  160. public function settransportprotocol($transportprotocol) {
  161. $this->transportprotocol = $transportprotocol;
  162. }
  163. public function getdevicetype() {
  164. return $this->devicetype;
  165. }
  166. public function setdevicetype($devicetype) {
  167. $this->devicetype = $devicetype;
  168. }
  169. public function getdevicename() {
  170. return $this->devicename;
  171. }
  172. public function setdevicename($devicename) {
  173. $this->devicename = $devicename;
  174. }
  175. public function getprotocol() {
  176. return $this->protocol;
  177. }
  178. public function setprotocol($protocol) {
  179. $this->protocol = $protocol;
  180. }
  181. public function getcommand() {
  182. return $this->command;
  183. }
  184. public function setcommand($command) {
  185. $this->command = $command;
  186. }
  187. public function getcreatedate() {
  188. return $this->createdate;
  189. }
  190. public function setcreatedate($createdate) {
  191. $this->createdate = $createdate;
  192. }
  193. public function getcontactname() {
  194. return $this->contactname;
  195. }
  196. public function setcontactname($contactname) {
  197. $this->contactname = $contactname;
  198. }
  199. public function gettimezone() {
  200. return $this->timezone;
  201. }
  202. public function settimezone($timezone) {
  203. $this->timezone = $timezone;
  204. }
  205. public function getgroupname() {
  206. return $this->groupname;
  207. }
  208. public function setgroupname($groupname) {
  209. $this->groupname = $groupname;
  210. }
  211. public function getuserlimit() {
  212. return $this->userlimit;
  213. }
  214. public function setuserlimit($userlimit) {
  215. $this->userlimit = $userlimit;
  216. }
  217. public function getdomain() {
  218. return $this->domain;
  219. }
  220. public function setdomain($domain) {
  221. $this->domain = $domain;
  222. }
  223. public function getid_service_provider() {
  224. return $this->id_service_provider;
  225. }
  226. public function setid_service_provider($id_service_provider) {
  227. $this->id_service_provider = $id_service_provider;
  228. }
  229. public function getid_group() {
  230. return $this->id_group;
  231. }
  232. public function setid_group($id_group) {
  233. $this->id_group = $id_group;
  234. }
  235. public function getid_user() {
  236. return $this->id_user;
  237. }
  238. public function setid_user($id_user) {
  239. $this->id_user = $id_user;
  240. }
  241. public function getid_order() {
  242. return $this->id_order;
  243. }
  244. public function setid_order($id_order) {
  245. $this->id_order = $id_order;
  246. }
  247. public function gettype() {
  248. return $this->type;
  249. }
  250. public function settype($type) {
  251. $this->type = $type;
  252. }
  253. }