| Total Complexity | 70 |
| Total Lines | 935 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Client often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Client, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 20 | class Client extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * project |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | * @validate NotEmpty |
||
| 28 | */ |
||
| 29 | protected $project = ''; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * client |
||
| 33 | * |
||
| 34 | * @var string |
||
| 35 | * @validate NotEmpty |
||
| 36 | */ |
||
| 37 | protected $client = ''; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * ownerId |
||
| 41 | * |
||
| 42 | * @var string |
||
| 43 | * @validate NotEmpty |
||
| 44 | */ |
||
| 45 | protected $ownerId = ''; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * networkInitial |
||
| 49 | * |
||
| 50 | * @var string |
||
| 51 | * @validate NotEmpty |
||
| 52 | */ |
||
| 53 | protected $networkInitial = ''; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * libraryIdentifier |
||
| 57 | * |
||
| 58 | * @var string |
||
| 59 | * @validate NotEmpty |
||
| 60 | */ |
||
| 61 | protected $libraryIdentifier = ''; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * adminEmail |
||
| 65 | * |
||
| 66 | * @var string |
||
| 67 | * @validate NotEmpty |
||
| 68 | */ |
||
| 69 | protected $adminEmail = ''; |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Workaround to ensure unique URNs until URNs will be genarated by fedora. |
||
| 73 | * @var string |
||
| 74 | */ |
||
| 75 | protected $nissPartSearch = ''; |
||
| 76 | |||
| 77 | /** |
||
| 78 | * Workaround to ensure unique URNs until URNs will be genarated by fedora. |
||
| 79 | * @var string |
||
| 80 | */ |
||
| 81 | protected $nissPartReplace = ''; |
||
| 82 | |||
| 83 | /** |
||
| 84 | * Workaround to ensure unique URNs until URNs will be genarated by fedora. |
||
| 85 | * @var boolean |
||
| 86 | */ |
||
| 87 | protected $replaceNissPart = false; |
||
| 88 | |||
| 89 | /** |
||
| 90 | * swordHost |
||
| 91 | * |
||
| 92 | * @var string |
||
| 93 | */ |
||
| 94 | protected $swordHost = ''; |
||
| 95 | |||
| 96 | /** |
||
| 97 | * swordUser |
||
| 98 | * |
||
| 99 | * @var string |
||
| 100 | */ |
||
| 101 | protected $swordUser = ''; |
||
| 102 | |||
| 103 | /** |
||
| 104 | * swordPassword |
||
| 105 | * |
||
| 106 | * @var string |
||
| 107 | */ |
||
| 108 | protected $swordPassword = ''; |
||
| 109 | |||
| 110 | /** |
||
| 111 | * swordCollectionNamespace |
||
| 112 | * |
||
| 113 | * @var string |
||
| 114 | */ |
||
| 115 | protected $swordCollectionNamespace = ''; |
||
| 116 | |||
| 117 | /** |
||
| 118 | * fedoraHost |
||
| 119 | * |
||
| 120 | * @var string |
||
| 121 | */ |
||
| 122 | protected $fedoraHost = ''; |
||
| 123 | |||
| 124 | /** |
||
| 125 | * fedoraUser |
||
| 126 | * |
||
| 127 | * @var string |
||
| 128 | */ |
||
| 129 | protected $fedoraUser = ''; |
||
| 130 | |||
| 131 | /** |
||
| 132 | * fedoraPassword |
||
| 133 | * |
||
| 134 | * @var string |
||
| 135 | */ |
||
| 136 | protected $fedoraPassword = ''; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * elasticSearchHost |
||
| 140 | * |
||
| 141 | * @var string |
||
| 142 | */ |
||
| 143 | protected $elasticSearchHost = ''; |
||
| 144 | |||
| 145 | /** |
||
| 146 | * elasticSearchPort |
||
| 147 | * |
||
| 148 | * @var string |
||
| 149 | */ |
||
| 150 | protected $elasticSearchPort = ''; |
||
| 151 | |||
| 152 | /** |
||
| 153 | * uploadDirectory |
||
| 154 | * |
||
| 155 | * @var string |
||
| 156 | */ |
||
| 157 | protected $uploadDirectory = ''; |
||
| 158 | |||
| 159 | /** |
||
| 160 | * uploadDomain |
||
| 161 | * |
||
| 162 | * @var string |
||
| 163 | */ |
||
| 164 | protected $uploadDomain = ''; |
||
| 165 | |||
| 166 | /** |
||
| 167 | * adminNewDocumentNotificationSubject |
||
| 168 | * |
||
| 169 | * @var string |
||
| 170 | */ |
||
| 171 | protected $adminNewDocumentNotificationSubject = ''; |
||
| 172 | |||
| 173 | /** |
||
| 174 | * adminNewDocumentNotificationBody |
||
| 175 | * |
||
| 176 | * @var string |
||
| 177 | */ |
||
| 178 | protected $adminNewDocumentNotificationBody = ''; |
||
| 179 | |||
| 180 | /** |
||
| 181 | * submitterNewDocumentNotificationSubject |
||
| 182 | * |
||
| 183 | * @var string |
||
| 184 | */ |
||
| 185 | protected $submitterNewDocumentNotificationSubject = ''; |
||
| 186 | |||
| 187 | /** |
||
| 188 | * submitterNewDocumentNotificationBody |
||
| 189 | * |
||
| 190 | * @var string |
||
| 191 | */ |
||
| 192 | protected $submitterNewDocumentNotificationBody = ''; |
||
| 193 | |||
| 194 | /** |
||
| 195 | * submitterIngestNotificationSubject |
||
| 196 | * |
||
| 197 | * @var string |
||
| 198 | */ |
||
| 199 | protected $submitterIngestNotificationSubject = ''; |
||
| 200 | |||
| 201 | /** |
||
| 202 | * submitterIngestNotificationBody |
||
| 203 | * |
||
| 204 | * @var string |
||
| 205 | */ |
||
| 206 | protected $submitterIngestNotificationBody = ''; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * adminRegisterDocumentNotificationSubject |
||
| 210 | * |
||
| 211 | * @var string |
||
| 212 | */ |
||
| 213 | protected $adminRegisterDocumentNotificationSubject = ''; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * adminRegisterDocumentNotificationBody |
||
| 217 | * |
||
| 218 | * @var string |
||
| 219 | */ |
||
| 220 | protected $adminRegisterDocumentNotificationBody = ''; |
||
| 221 | |||
| 222 | /** |
||
| 223 | * @var string |
||
| 224 | */ |
||
| 225 | protected $adminNewSuggestionSubject = ''; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * @var string |
||
| 229 | */ |
||
| 230 | protected $adminNewSuggestionBody = ''; |
||
| 231 | |||
| 232 | /** |
||
| 233 | * @var string |
||
| 234 | */ |
||
| 235 | protected $adminEmbargoSubject = ''; |
||
| 236 | |||
| 237 | /** |
||
| 238 | * @var string |
||
| 239 | */ |
||
| 240 | protected $adminEmbargoBody = ''; |
||
| 241 | |||
| 242 | /** |
||
| 243 | * @var string |
||
| 244 | */ |
||
| 245 | protected $adminOaFondSubject = ''; |
||
| 246 | |||
| 247 | /** |
||
| 248 | * @var string |
||
| 249 | */ |
||
| 250 | protected $adminOaFondBody = ''; |
||
| 251 | |||
| 252 | /** |
||
| 253 | * @var string |
||
| 254 | */ |
||
| 255 | protected $suggestionFlashmessage = ''; |
||
| 256 | |||
| 257 | /** |
||
| 258 | * Returns the project |
||
| 259 | * |
||
| 260 | * @return string $project |
||
| 261 | */ |
||
| 262 | public function getProject() |
||
| 263 | { |
||
| 264 | return $this->project; |
||
| 265 | } |
||
| 266 | |||
| 267 | /** |
||
| 268 | * Sets the project |
||
| 269 | * |
||
| 270 | * @param string $project |
||
| 271 | * @return void |
||
| 272 | */ |
||
| 273 | public function setProject($project) |
||
| 274 | { |
||
| 275 | $this->project = $project; |
||
| 276 | } |
||
| 277 | |||
| 278 | /** |
||
| 279 | * Returns the client |
||
| 280 | * |
||
| 281 | * @return string $client |
||
| 282 | */ |
||
| 283 | public function getClient() |
||
| 284 | { |
||
| 285 | return $this->client; |
||
| 286 | } |
||
| 287 | |||
| 288 | /** |
||
| 289 | * Sets the client |
||
| 290 | * |
||
| 291 | * @param string $client |
||
| 292 | * @return void |
||
| 293 | */ |
||
| 294 | public function setClient($client) |
||
| 295 | { |
||
| 296 | $this->client = $client; |
||
| 297 | } |
||
| 298 | |||
| 299 | /** |
||
| 300 | * Returns the networkInitial |
||
| 301 | * |
||
| 302 | * @return string $networkInitial |
||
| 303 | */ |
||
| 304 | public function getNetworkInitial() |
||
| 305 | { |
||
| 306 | return $this->networkInitial; |
||
| 307 | } |
||
| 308 | |||
| 309 | /** |
||
| 310 | * Sets the networkInitial |
||
| 311 | * |
||
| 312 | * @param string $networkInitial |
||
| 313 | * @return void |
||
| 314 | */ |
||
| 315 | public function setNetworkInitial($networkInitial) |
||
| 316 | { |
||
| 317 | $this->networkInitial = $networkInitial; |
||
| 318 | } |
||
| 319 | |||
| 320 | /** |
||
| 321 | * Returns the libraryIdentifier |
||
| 322 | * |
||
| 323 | * @return string $libraryIdentifier |
||
| 324 | */ |
||
| 325 | public function getLibraryIdentifier() |
||
| 326 | { |
||
| 327 | return $this->libraryIdentifier; |
||
| 328 | } |
||
| 329 | |||
| 330 | /** |
||
| 331 | * Sets the libraryIdentifier |
||
| 332 | * |
||
| 333 | * @param string $libraryIdentifier |
||
| 334 | * @return void |
||
| 335 | */ |
||
| 336 | public function setLibraryIdentifier($libraryIdentifier) |
||
| 337 | { |
||
| 338 | $this->libraryIdentifier = $libraryIdentifier; |
||
| 339 | } |
||
| 340 | |||
| 341 | /** |
||
| 342 | * Gets the ownerId |
||
| 343 | * |
||
| 344 | * @return string |
||
| 345 | */ |
||
| 346 | public function getOwnerId() |
||
| 347 | { |
||
| 348 | return $this->ownerId; |
||
| 349 | } |
||
| 350 | |||
| 351 | /** |
||
| 352 | * Sets the ownerId |
||
| 353 | * |
||
| 354 | * @param string $ownerId |
||
| 355 | * @return void |
||
| 356 | */ |
||
| 357 | public function setOwnerId($ownerId) |
||
| 358 | { |
||
| 359 | $this->ownerId = $ownerId; |
||
| 360 | } |
||
| 361 | |||
| 362 | /** |
||
| 363 | * Gets the adminEmail |
||
| 364 | * |
||
| 365 | * @return string |
||
| 366 | */ |
||
| 367 | public function getAdminEmail() |
||
| 368 | { |
||
| 369 | return $this->adminEmail; |
||
| 370 | } |
||
| 371 | |||
| 372 | /** |
||
| 373 | * Sets the adminEmail |
||
| 374 | * |
||
| 375 | * @return string |
||
| 376 | */ |
||
| 377 | public function setAdminEmail($adminEmail) |
||
| 378 | { |
||
| 379 | $this->adminEmail = $adminEmail; |
||
| 380 | } |
||
| 381 | |||
| 382 | /** |
||
| 383 | * Returns the nissPartSearch |
||
| 384 | * |
||
| 385 | * @return string $nissPartSearch |
||
| 386 | */ |
||
| 387 | public function getNissPartSearch() |
||
| 390 | } |
||
| 391 | |||
| 392 | /** |
||
| 393 | * Sets the nissPartSearch |
||
| 394 | * |
||
| 395 | * @param string $nissPartSearch |
||
| 396 | * @return void |
||
| 397 | */ |
||
| 398 | public function setNissPartSearch($nissPartSearch) |
||
| 399 | { |
||
| 400 | $this->nissPartSearch = $nissPartSearch; |
||
| 401 | } |
||
| 402 | |||
| 403 | /** |
||
| 404 | * Returns the nissPartReplace |
||
| 405 | * |
||
| 406 | * @return string $nissPartReplace |
||
| 407 | */ |
||
| 408 | public function getNissPartReplace() |
||
| 409 | { |
||
| 410 | return $this->nissPartReplace; |
||
| 411 | } |
||
| 412 | |||
| 413 | /** |
||
| 414 | * Sets the nissPartReplace |
||
| 415 | * |
||
| 416 | * @param string $nissPartReplace |
||
| 417 | * @return void |
||
| 418 | */ |
||
| 419 | public function setNissPartReplace($nissPartReplace) |
||
| 420 | { |
||
| 421 | $this->nissPartReplace = $nissPartReplace; |
||
| 422 | } |
||
| 423 | |||
| 424 | /** |
||
| 425 | * Returns the replaceNissPart |
||
| 426 | * |
||
| 427 | * @return boolean $replaceNissPart |
||
| 428 | */ |
||
| 429 | public function getReplaceNissPart() |
||
| 430 | { |
||
| 431 | return $this->replaceNissPart; |
||
| 432 | } |
||
| 433 | |||
| 434 | /** |
||
| 435 | * Sets the replaceNissPart |
||
| 436 | * |
||
| 437 | * @param boolean $replaceNissPart |
||
| 438 | * @return void |
||
| 439 | */ |
||
| 440 | public function setReplaceNissPart($replaceNissPart) |
||
| 441 | { |
||
| 442 | $this->replaceNissPart = $replaceNissPart; |
||
| 443 | } |
||
| 444 | |||
| 445 | /** |
||
| 446 | * Returns the swordHost |
||
| 447 | * |
||
| 448 | * @return string $swordHost |
||
| 449 | */ |
||
| 450 | public function getSwordHost() |
||
| 451 | { |
||
| 452 | return $this->swordHost; |
||
| 453 | } |
||
| 454 | |||
| 455 | /** |
||
| 456 | * Sets the swordHost |
||
| 457 | * |
||
| 458 | * @var string $swordHost |
||
| 459 | * @return void |
||
| 460 | */ |
||
| 461 | public function setSwordHost($swordHost) |
||
| 462 | { |
||
| 463 | $this->swordHost = $swordHost; |
||
| 464 | } |
||
| 465 | |||
| 466 | /** |
||
| 467 | * Returns the swordUser |
||
| 468 | * |
||
| 469 | * @return string $swordUser |
||
| 470 | */ |
||
| 471 | public function getSwordUser() |
||
| 472 | { |
||
| 473 | return $this->swordUser; |
||
| 474 | } |
||
| 475 | |||
| 476 | /** |
||
| 477 | * Sets the swordUser |
||
| 478 | * |
||
| 479 | * @var string $swordUser |
||
| 480 | * @return void |
||
| 481 | */ |
||
| 482 | public function setSwordUser($swordUser) |
||
| 483 | { |
||
| 484 | $this->swordUser = $swordUser; |
||
| 485 | } |
||
| 486 | |||
| 487 | /** |
||
| 488 | * Returns the swordPassword |
||
| 489 | * |
||
| 490 | * @return string $swordPassword |
||
| 491 | */ |
||
| 492 | public function getSwordPassword() |
||
| 493 | { |
||
| 494 | return $this->swordPassword; |
||
| 495 | } |
||
| 496 | |||
| 497 | /** |
||
| 498 | * Sets the swordPassword |
||
| 499 | * |
||
| 500 | * @var string $swordPassword |
||
| 501 | * @return void |
||
| 502 | */ |
||
| 503 | public function setSwordPassword($swordPassword) |
||
| 504 | { |
||
| 505 | $this->swordPassword = $swordPassword; |
||
| 506 | } |
||
| 507 | |||
| 508 | /** |
||
| 509 | * Returns the swordCollectionNamespace |
||
| 510 | * |
||
| 511 | * @return string $swordCollectionNamespace |
||
| 512 | */ |
||
| 513 | public function getSwordCollectionNamespace() |
||
| 514 | { |
||
| 515 | return $this->swordCollectionNamespace; |
||
| 516 | } |
||
| 517 | |||
| 518 | /** |
||
| 519 | * Sets the swordCollectionNamespace |
||
| 520 | * |
||
| 521 | * @var string $swordCollectionNamespace |
||
| 522 | * @return void |
||
| 523 | */ |
||
| 524 | public function setSwordCollectionNamespace($swordCollectionNamespace) |
||
| 525 | { |
||
| 526 | $this->swordCollectionNamespace = $swordCollectionNamespace; |
||
| 527 | } |
||
| 528 | |||
| 529 | /** |
||
| 530 | * Returns the fedoraHost |
||
| 531 | * |
||
| 532 | * @return string $fedoraHost |
||
| 533 | */ |
||
| 534 | public function getFedoraHost() |
||
| 535 | { |
||
| 536 | return $this->fedoraHost; |
||
| 537 | } |
||
| 538 | |||
| 539 | /** |
||
| 540 | * Sets the fedoraHost |
||
| 541 | * |
||
| 542 | * @var string $fedoraHost |
||
| 543 | * @return void |
||
| 544 | */ |
||
| 545 | public function setFedoraHost($fedoraHost) |
||
| 546 | { |
||
| 547 | $this->fedoraHost = $fedoraHost; |
||
| 548 | } |
||
| 549 | |||
| 550 | /** |
||
| 551 | * Returns the fedoraUser |
||
| 552 | * |
||
| 553 | * @return string $fedoraUser |
||
| 554 | */ |
||
| 555 | public function getFedoraUser() |
||
| 556 | { |
||
| 557 | return $this->fedoraUser; |
||
| 558 | } |
||
| 559 | |||
| 560 | /** |
||
| 561 | * Sets the fedoraUser |
||
| 562 | * |
||
| 563 | * @var string $fedoraUser |
||
| 564 | * @return void |
||
| 565 | */ |
||
| 566 | public function setFedoraUser($fedoraUser) |
||
| 567 | { |
||
| 568 | $this->fedoraUser = $fedoraUser; |
||
| 569 | } |
||
| 570 | |||
| 571 | /** |
||
| 572 | * Returns the fedoraPassword |
||
| 573 | * |
||
| 574 | * @return string $fedoraPassword |
||
| 575 | */ |
||
| 576 | public function getFedoraPassword() |
||
| 577 | { |
||
| 578 | return $this->fedoraPassword; |
||
| 579 | } |
||
| 580 | |||
| 581 | /** |
||
| 582 | * Sets the fedoraPassword |
||
| 583 | * |
||
| 584 | * @var string $fedoraPassword |
||
| 585 | * @return void |
||
| 586 | */ |
||
| 587 | public function setFedoraPassword($fedoraPassword) |
||
| 588 | { |
||
| 589 | $this->fedoraPassword = $fedoraPassword; |
||
| 590 | } |
||
| 591 | |||
| 592 | /** |
||
| 593 | * Returns the elasticSearchHost |
||
| 594 | * |
||
| 595 | * @return string $elasticSearchHost |
||
| 596 | */ |
||
| 597 | public function getElasticSearchHost() |
||
| 598 | { |
||
| 599 | return $this->elasticSearchHost; |
||
| 600 | } |
||
| 601 | |||
| 602 | /** |
||
| 603 | * Sets the elasticSearchHost |
||
| 604 | * |
||
| 605 | * @var string $elasticSearchHost |
||
| 606 | * @return void |
||
| 607 | */ |
||
| 608 | public function setElasticSearchHost($elasticSearchHost) |
||
| 609 | { |
||
| 610 | $this->elasticSearchHost = $elasticSearchHost; |
||
| 611 | } |
||
| 612 | |||
| 613 | /** |
||
| 614 | * Returns the elasticSearchPort |
||
| 615 | * |
||
| 616 | * @return string $elasticSearchPort |
||
| 617 | */ |
||
| 618 | public function getElasticSearchPort() |
||
| 619 | { |
||
| 620 | return $this->elasticSearchPort; |
||
| 621 | } |
||
| 622 | |||
| 623 | /** |
||
| 624 | * Sets the elasticSearchPort |
||
| 625 | * |
||
| 626 | * @var string $elasticSearchPort |
||
| 627 | * @return void |
||
| 628 | */ |
||
| 629 | public function setElasticSearchPort($elasticSearchPort) |
||
| 630 | { |
||
| 631 | $this->elasticSearchPort = $elasticSearchPort; |
||
| 632 | } |
||
| 633 | |||
| 634 | /** |
||
| 635 | * Returns the uploadDirectory |
||
| 636 | * |
||
| 637 | * @return string $uploadDirectory |
||
| 638 | */ |
||
| 639 | public function getUploadDirectory() |
||
| 640 | { |
||
| 641 | return $this->uploadDirectory; |
||
| 642 | } |
||
| 643 | |||
| 644 | /** |
||
| 645 | * Sets the uploadDirectory |
||
| 646 | * |
||
| 647 | * @var string $uploadDirectory |
||
| 648 | * @return void |
||
| 649 | */ |
||
| 650 | public function setUploadDirectory($uploadDirectory) |
||
| 651 | { |
||
| 652 | $this->uploadDirectory = $uploadDirectory; |
||
| 653 | } |
||
| 654 | |||
| 655 | /** |
||
| 656 | * Returns the uploadDomain |
||
| 657 | * |
||
| 658 | * @return string $uploadDomain |
||
| 659 | */ |
||
| 660 | public function getUploadDomain() |
||
| 661 | { |
||
| 662 | return $this->uploadDomain; |
||
| 663 | } |
||
| 664 | |||
| 665 | /** |
||
| 666 | * Sets the uploadDomain |
||
| 667 | * |
||
| 668 | * @var string $uploadDomain |
||
| 669 | * @return void |
||
| 670 | */ |
||
| 671 | public function setUploadDomain($uploadDomain) |
||
| 672 | { |
||
| 673 | $this->uploadDomain = $uploadDomain; |
||
| 674 | } |
||
| 675 | |||
| 676 | |||
| 677 | /** |
||
| 678 | * Gets the submitterIngestNotificationSubject |
||
| 679 | * |
||
| 680 | * @return string |
||
| 681 | */ |
||
| 682 | public function getSubmitterIngestNotificationSubject() |
||
| 683 | { |
||
| 684 | return $this->submitterIngestNotificationSubject; |
||
| 685 | } |
||
| 686 | |||
| 687 | /** |
||
| 688 | * Sets the submitterIngestNotificationSubject |
||
| 689 | * |
||
| 690 | * @var string $submitterIngestNotificationSubject |
||
| 691 | * @return void |
||
| 692 | */ |
||
| 693 | public function setSubmitterIngestNotificationSubject($submitterIngestNotificationSubject) |
||
| 694 | { |
||
| 695 | $this->submitterIngestNotificationSubject = $submitterIngestNotificationSubject; |
||
| 696 | } |
||
| 697 | |||
| 698 | /** |
||
| 699 | * Gets the submitterIngestNotificationBody |
||
| 700 | * |
||
| 701 | * @return string |
||
| 702 | */ |
||
| 703 | public function getSubmitterIngestNotificationBody() |
||
| 704 | { |
||
| 705 | return $this->submitterIngestNotificationBody; |
||
| 706 | } |
||
| 707 | |||
| 708 | /** |
||
| 709 | * Sets the submitterIngestNotificationBody |
||
| 710 | * |
||
| 711 | * @var string $submitterIngestNotificationBody |
||
| 712 | * @return void |
||
| 713 | */ |
||
| 714 | public function setSubmitterIngestNotificationBody($submitterIngestNotificationBody) |
||
| 715 | { |
||
| 716 | $this->submitterIngestNotificationBody = $submitterIngestNotificationBody; |
||
| 717 | } |
||
| 718 | |||
| 719 | /** |
||
| 720 | * Gets the submitterNewDocumentNotificationSubject |
||
| 721 | * |
||
| 722 | * @return string |
||
| 723 | */ |
||
| 724 | public function getSubmitterNewDocumentNotificationSubject() |
||
| 725 | { |
||
| 726 | return $this->submitterNewDocumentNotificationSubject; |
||
| 727 | } |
||
| 728 | |||
| 729 | /** |
||
| 730 | * Sets the submitterNewDocumentNotificationSubject |
||
| 731 | * |
||
| 732 | * @var string $submitterNewDocumentNotificationSubject |
||
| 733 | * @return void |
||
| 734 | */ |
||
| 735 | public function setSubmitterNewDocumentNotificationSubject($submitterNewDocumentNotificationSubject) |
||
| 736 | { |
||
| 737 | $this->submitterNewDocumentNotificationSubject = $submitterNewDocumentNotificationSubject; |
||
| 738 | } |
||
| 739 | |||
| 740 | /** |
||
| 741 | * Gets the submitterNewDocumentNotificationBody |
||
| 742 | * |
||
| 743 | * @return string |
||
| 744 | */ |
||
| 745 | public function getSubmitterNewDocumentNotificationBody() |
||
| 746 | { |
||
| 747 | return $this->submitterNewDocumentNotificationBody; |
||
| 748 | } |
||
| 749 | |||
| 750 | /** |
||
| 751 | * Sets the submitterNewDocumentNotificationBody |
||
| 752 | * |
||
| 753 | * @var string $submitterNewDocumentNotificationBody |
||
| 754 | * @return void |
||
| 755 | */ |
||
| 756 | public function setSubmitterNewDocumentNotificationBody($submitterNewDocumentNotificationBody) |
||
| 757 | { |
||
| 758 | $this->submitterNewDocumentNotificationBody = $submitterNewDocumentNotificationBody; |
||
| 759 | } |
||
| 760 | |||
| 761 | /** |
||
| 762 | * Gets the adminNewDocumentNotificationSubject |
||
| 763 | * |
||
| 764 | * @return string |
||
| 765 | */ |
||
| 766 | public function getAdminNewDocumentNotificationSubject() |
||
| 767 | { |
||
| 768 | return $this->adminNewDocumentNotificationSubject; |
||
| 769 | } |
||
| 770 | |||
| 771 | /** |
||
| 772 | * Sets the adminNewDocumentNotificationSubject |
||
| 773 | * |
||
| 774 | * @var string $adminNewDocumentNotificationSubject |
||
| 775 | * @return void |
||
| 776 | */ |
||
| 777 | public function setAdminNewDocumentNotificationSubject($adminNewDocumentNotificationSubject) |
||
| 778 | { |
||
| 779 | $this->adminNewDocumentNotificationSubject = $adminNewDocumentNotificationSubject; |
||
| 780 | } |
||
| 781 | |||
| 782 | /** |
||
| 783 | * Gets the adminNewDocumentNotificationBody |
||
| 784 | * |
||
| 785 | * @return string |
||
| 786 | */ |
||
| 787 | public function getAdminNewDocumentNotificationBody() |
||
| 788 | { |
||
| 789 | return $this->adminNewDocumentNotificationBody; |
||
| 790 | } |
||
| 791 | |||
| 792 | /** |
||
| 793 | * Sets the adminNewDocumentNotificationBody |
||
| 794 | * |
||
| 795 | * @var string $adminNewDocumentNotificationBody |
||
| 796 | * @return void |
||
| 797 | */ |
||
| 798 | public function setAdminNewDocumentNotificationBody($adminNewDocumentNotificationBody) |
||
| 799 | { |
||
| 800 | $this->adminNewDocumentNotificationBody = $adminNewDocumentNotificationBody; |
||
| 801 | } |
||
| 802 | |||
| 803 | /** |
||
| 804 | * Gets the adminRegisterDocumentNotificationSubject |
||
| 805 | * |
||
| 806 | * @return string |
||
| 807 | */ |
||
| 808 | public function getAdminRegisterDocumentNotificationSubject() |
||
| 809 | { |
||
| 810 | return $this->adminRegisterDocumentNotificationSubject; |
||
| 811 | } |
||
| 812 | |||
| 813 | /** |
||
| 814 | * Sets the adminRegisterDocumentNotificationSubject |
||
| 815 | * |
||
| 816 | * @var string $adminRegisterDocumentNotificationSubject |
||
| 817 | * @return void |
||
| 818 | */ |
||
| 819 | public function setAdminRegisterDocumentNotificationSubject($adminRegisterDocumentNotificationSubject) |
||
| 820 | { |
||
| 821 | $this->adminRegisterDocumentNotificationSubject = $adminRegisterDocumentNotificationSubject; |
||
| 822 | } |
||
| 823 | |||
| 824 | /** |
||
| 825 | * Gets the adminRegisterDocumentNotificationBody |
||
| 826 | * |
||
| 827 | * @return string |
||
| 828 | */ |
||
| 829 | public function getAdminRegisterDocumentNotificationBody() |
||
| 830 | { |
||
| 831 | return $this->adminRegisterDocumentNotificationBody; |
||
| 832 | } |
||
| 833 | |||
| 834 | /** |
||
| 835 | * Sets the adminRegisterDocumentNotificationBody |
||
| 836 | * |
||
| 837 | * @var string $adminRegisterDocumentNotificationBody |
||
| 838 | * @return void |
||
| 839 | */ |
||
| 840 | public function setAdminRegisterDocumentNotificationBody($adminRegisterDocumentNotificationBody) |
||
| 841 | { |
||
| 842 | $this->adminRegisterDocumentNotificationBody = $adminRegisterDocumentNotificationBody; |
||
| 843 | } |
||
| 844 | |||
| 845 | /** |
||
| 846 | * @return string |
||
| 847 | */ |
||
| 848 | public function getAdminNewSuggestionSubject(): string |
||
| 851 | } |
||
| 852 | |||
| 853 | /** |
||
| 854 | * @param string $adminNewSuggestionSubject |
||
| 855 | */ |
||
| 856 | public function setAdminNewSuggestionSubject(string $adminNewSuggestionSubject) |
||
| 857 | { |
||
| 858 | $this->adminNewSuggestionSubject = $adminNewSuggestionSubject; |
||
| 859 | } |
||
| 860 | |||
| 861 | /** |
||
| 862 | * @return string |
||
| 863 | */ |
||
| 864 | public function getAdminNewSuggestionBody(): string |
||
| 865 | { |
||
| 866 | return $this->adminNewSuggestionBody; |
||
| 867 | } |
||
| 868 | |||
| 869 | /** |
||
| 870 | * @param string $adminNewSuggestionBody |
||
| 871 | */ |
||
| 872 | public function setAdminNewSuggestionBody(string $adminNewSuggestionBody) |
||
| 873 | { |
||
| 874 | $this->adminNewSuggestionBody = $adminNewSuggestionBody; |
||
| 875 | } |
||
| 876 | |||
| 877 | /** |
||
| 878 | * @return string |
||
| 879 | */ |
||
| 880 | public function getAdminEmbargoSubject(): string |
||
| 881 | { |
||
| 882 | return $this->adminEmbargoSubject; |
||
| 883 | } |
||
| 884 | |||
| 885 | /** |
||
| 886 | * @param string $adminEmbargoSubject |
||
| 887 | */ |
||
| 888 | public function setAdminEmbargoSubject(string $adminEmbargoSubject) |
||
| 889 | { |
||
| 890 | $this->adminEmbargoSubject = $adminEmbargoSubject; |
||
| 891 | } |
||
| 892 | |||
| 893 | /** |
||
| 894 | * @return string |
||
| 895 | */ |
||
| 896 | public function getAdminEmbargoBody(): string |
||
| 897 | { |
||
| 898 | return $this->adminEmbargoBody; |
||
| 899 | } |
||
| 900 | |||
| 901 | /** |
||
| 902 | * @param string $adminEmbargoBody |
||
| 903 | */ |
||
| 904 | public function setAdminEmbargoBody(string $adminEmbargoBody) |
||
| 905 | { |
||
| 906 | $this->adminEmbargoBody = $adminEmbargoBody; |
||
| 907 | } |
||
| 908 | |||
| 909 | /** |
||
| 910 | * @return string |
||
| 911 | */ |
||
| 912 | public function getAdminOaFondSubject(): string |
||
| 913 | { |
||
| 914 | return $this->adminOaFondSubject; |
||
| 915 | } |
||
| 916 | |||
| 917 | /** |
||
| 918 | * @param string $adminOaFondSubject |
||
| 919 | */ |
||
| 920 | public function setAdminOaFondSubject(string $adminOaFondSubject) |
||
| 921 | { |
||
| 922 | $this->adminOaFondSubject = $adminOaFondSubject; |
||
| 923 | } |
||
| 924 | |||
| 925 | /** |
||
| 926 | * @return string |
||
| 927 | */ |
||
| 928 | public function getAdminOaFondBody(): string |
||
| 929 | { |
||
| 930 | return $this->adminOaFondBody; |
||
| 931 | } |
||
| 932 | |||
| 933 | /** |
||
| 934 | * @param string $adminOaFondBody |
||
| 935 | */ |
||
| 936 | public function setAdminOaFondBody(string $adminOaFondBody) |
||
| 937 | { |
||
| 938 | $this->adminOaFondBody = $adminOaFondBody; |
||
| 939 | } |
||
| 940 | |||
| 941 | /** |
||
| 942 | * @return string |
||
| 943 | */ |
||
| 944 | public function getSuggestionFlashmessage(): string |
||
| 945 | { |
||
| 946 | return $this->suggestionFlashmessage; |
||
| 947 | } |
||
| 948 | |||
| 949 | /** |
||
| 950 | * @param string $suggestionFlashmessage |
||
| 951 | */ |
||
| 952 | public function setSuggestionFlashmessage(string $suggestionFlashmessage) |
||
| 955 | } |
||
| 956 | |||
| 957 | |||
| 958 | } |
||
| 959 |