Open Journal Systems  3.3.0
DepositPoint.inc.php
1 <?php
2 
14 class DepositPoint extends DataObject {
19  public function getContextId() {
20  return $this->getData('contextId');
21  }
22 
27  public function setContextId($contextId) {
28  return $this->setData('contextId', $contextId);
29  }
30 
35  public function getSequence() {
36  return $this->getData('seq');
37  }
38 
43  public function setSequence($seq) {
44  return $this->setData('seq', $seq);
45  }
46 
51  public function getLocalizedName() {
52  return $this->getLocalizedData('name');
53  }
54 
60  public function getName($locale) {
61  return $this->getData('name', $locale);
62  }
63 
69  public function setName($name, $locale = null) {
70  return $this->setData('name', $name, $locale);
71  }
72 
77  public function getSwordUsername() {
78  return $this->getData('swordUsername');
79  }
80 
85  public function setSwordUsername($swordUsername) {
86  return $this->setData('swordUsername', $swordUsername);
87  }
88 
93  public function getSwordPassword() {
94  return $this->getData('swordPassword');
95  }
96 
101  public function setSwordPassword($swordPassword) {
102  return $this->setData('swordPassword', $swordPassword);
103  }
104 
109  public function getSwordApikey() {
110  return $this->getData('swordApikey');
111  }
112 
117  public function setSwordApikey($swordApikey) {
118  return $this->setData('swordApikey', $swordApikey);
119  }
120 
125  public function getSwordUrl() {
126  return $this->getData('url');
127  }
128 
133  public function setSwordUrl($swordUrl) {
134  return $this->setData('url', $swordUrl);
135  }
136 
141  public function getType() {
142  return $this->getData('type');
143  }
144 
149  public function setType($type) {
150  return $this->setData('type', $type);
151  }
152 }
DataObject\getData
& getData($key, $locale=null)
Definition: DataObject.inc.php:100
DataObject\getLocalizedData
getLocalizedData($key, $preferredLocale=null)
Definition: DataObject.inc.php:71
DepositPoint\setType
setType($type)
Definition: DepositPoint.inc.php:149
DepositPoint\getSwordApikey
getSwordApikey()
Definition: DepositPoint.inc.php:109
DepositPoint\setName
setName($name, $locale=null)
Definition: DepositPoint.inc.php:69
DepositPoint\getSequence
getSequence()
Definition: DepositPoint.inc.php:35
DataObject
Any class with an associated DAO should extend this class.
Definition: DataObject.inc.php:18
DepositPoint
Deposit point entity.
Definition: DepositPoint.inc.php:14
DepositPoint\getSwordUrl
getSwordUrl()
Definition: DepositPoint.inc.php:125
DepositPoint\getType
getType()
Definition: DepositPoint.inc.php:141
DepositPoint\getLocalizedName
getLocalizedName()
Definition: DepositPoint.inc.php:51
DepositPoint\setSwordUsername
setSwordUsername($swordUsername)
Definition: DepositPoint.inc.php:85
DepositPoint\getName
getName($locale)
Definition: DepositPoint.inc.php:60
DepositPoint\setSequence
setSequence($seq)
Definition: DepositPoint.inc.php:43
DepositPoint\getSwordUsername
getSwordUsername()
Definition: DepositPoint.inc.php:77
DepositPoint\getSwordPassword
getSwordPassword()
Definition: DepositPoint.inc.php:93
DepositPoint\setSwordApikey
setSwordApikey($swordApikey)
Definition: DepositPoint.inc.php:117
DepositPoint\setSwordPassword
setSwordPassword($swordPassword)
Definition: DepositPoint.inc.php:101
DepositPoint\setContextId
setContextId($contextId)
Definition: DepositPoint.inc.php:27
DepositPoint\setSwordUrl
setSwordUrl($swordUrl)
Definition: DepositPoint.inc.php:133
DataObject\setData
setData($key, $value, $locale=null)
Definition: DataObject.inc.php:132
DepositPoint\getContextId
getContextId()
Definition: DepositPoint.inc.php:19