1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10
11 class bbDomain_readHandles extends apiModule
12 {
13 protected $rpcMethod = 'bbDomain::readHandles';
14
15 16 17 18 19 20
21 public function setOeid($oeid)
22 {
23 return $this->addParam('oeid', (integer) $oeid);
24 }
25
26 27 28 29 30 31
32 public function setSeid($seid)
33 {
34 return $this->addParam('seid',(integer) $seid);
35 }
36
37 38 39 40 41 42
43 public function setServiceObjectEntryId($seid)
44 {
45 return $this->setSeid($seid);
46 }
47
48 49 50 51 52 53
54 public function setOrderId($oeid)
55 {
56 return $this->setOeid($oeid);
57 }
58
59 60 61 62 63 64
65 public function setDn($dn)
66 {
67 return $this->addParam('dn', $dn);
68 }
69
70 71 72 73 74 75
76 public function setPSeid($pseid)
77 {
78 return $this->addParam('p_seid', (integer) $pseid);
79 }
80
81 82 83 84 85 86
87 public function addReturnSpf($bool = true)
88 {
89 return $this->addParam('return_spf', (bool) $bool);
90 }
91 }