Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Job 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 Job, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 40 | class Job extends BaseEntity implements JobInterface, |
||
|
|
|||
| 41 | DraftableEntityInterface, |
||
| 42 | SnapshotGeneratorProviderInterface |
||
| 43 | |||
| 44 | { |
||
| 45 | use AttachableEntityTrait, MetaDataProviderTrait, ClonePropertiesTrait; |
||
| 46 | |||
| 47 | |||
| 48 | private $cloneProperties = [ |
||
| 49 | 'classifications', 'atsMode', |
||
| 50 | ]; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * unique ID of a job posting used by applications to reference |
||
| 54 | * a job |
||
| 55 | * |
||
| 56 | * @var String |
||
| 57 | * @ODM\Field(type="string") @ODM\Index |
||
| 58 | **/ |
||
| 59 | protected $applyId; |
||
| 60 | |||
| 61 | /** |
||
| 62 | * title of a job posting |
||
| 63 | * |
||
| 64 | * @var String |
||
| 65 | * @ODM\Field(type="string") |
||
| 66 | */ |
||
| 67 | protected $title; |
||
| 68 | |||
| 69 | |||
| 70 | /** |
||
| 71 | * name of the publishing company |
||
| 72 | * |
||
| 73 | * @var String |
||
| 74 | * @ODM\Field(type="string") |
||
| 75 | */ |
||
| 76 | protected $company; |
||
| 77 | |||
| 78 | /** |
||
| 79 | * publishing company |
||
| 80 | * |
||
| 81 | * @var OrganizationInterface |
||
| 82 | * @ODM\ReferenceOne (targetDocument="\Organizations\Entity\Organization", simple=true, inversedBy="jobs") |
||
| 83 | * @ODM\Index |
||
| 84 | */ |
||
| 85 | protected $organization; |
||
| 86 | |||
| 87 | |||
| 88 | /** |
||
| 89 | * Email Address, which is used to send notifications about e.g. new applications. |
||
| 90 | * |
||
| 91 | * @var String |
||
| 92 | * @ODM\Field(type="string") |
||
| 93 | **/ |
||
| 94 | protected $contactEmail; |
||
| 95 | |||
| 96 | /** |
||
| 97 | * the owner of a Job Posting |
||
| 98 | * |
||
| 99 | * @var UserInterface $user |
||
| 100 | * @ODM\ReferenceOne(targetDocument="\Auth\Entity\User", simple=true) |
||
| 101 | * @ODM\Index |
||
| 102 | */ |
||
| 103 | protected $user; |
||
| 104 | |||
| 105 | /** |
||
| 106 | * all applications of a certain jobad |
||
| 107 | * |
||
| 108 | * @var Collection |
||
| 109 | * @ODM\ReferenceMany(targetDocument="Applications\Entity\Application", simple=true, mappedBy="job", |
||
| 110 | * repositoryMethod="loadApplicationsForJob") |
||
| 111 | */ |
||
| 112 | protected $applications; |
||
| 113 | |||
| 114 | /** |
||
| 115 | * new applications |
||
| 116 | * |
||
| 117 | * @ODM\ReferenceMany(targetDocument="Applications\Entity\Application", |
||
| 118 | * repositoryMethod="loadUnreadApplicationsForJob", mappedBy="job") |
||
| 119 | * @var Int |
||
| 120 | */ |
||
| 121 | protected $unreadApplications; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * language of the job posting. Languages are ISO 639-1 coded |
||
| 125 | * |
||
| 126 | * @var String |
||
| 127 | * @ODM\Field(type="string") |
||
| 128 | */ |
||
| 129 | protected $language; |
||
| 130 | |||
| 131 | /** |
||
| 132 | * location of the job posting. This is a plain text, which describes the location in |
||
| 133 | * search e.g. results. |
||
| 134 | * |
||
| 135 | * @var String |
||
| 136 | * @ODM\Field(type="string") |
||
| 137 | */ |
||
| 138 | protected $location; |
||
| 139 | |||
| 140 | /** |
||
| 141 | * locations of the job posting. This collection contains structured coordinates, |
||
| 142 | * postal codes, city, region, and country names |
||
| 143 | * |
||
| 144 | * @var Collection |
||
| 145 | * @ODM\EmbedMany(targetDocument="Location") |
||
| 146 | */ |
||
| 147 | protected $locations; |
||
| 148 | |||
| 149 | /** |
||
| 150 | * Link which points to the job posting |
||
| 151 | * |
||
| 152 | * @var String |
||
| 153 | * @ODM\Field(type="string") |
||
| 154 | **/ |
||
| 155 | protected $link; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * publishing date of a job posting |
||
| 159 | * |
||
| 160 | * @var String |
||
| 161 | * @ODM\Field(type="tz_date") |
||
| 162 | */ |
||
| 163 | protected $datePublishStart; |
||
| 164 | |||
| 165 | /** |
||
| 166 | * end date of a job posting |
||
| 167 | * |
||
| 168 | * @var String |
||
| 169 | * @ODM\Field(type="tz_date") |
||
| 170 | */ |
||
| 171 | protected $datePublishEnd; |
||
| 172 | |||
| 173 | /** |
||
| 174 | * Status of the job posting |
||
| 175 | * |
||
| 176 | * @var Status |
||
| 177 | * @ODM\EmbedOne(targetDocument="Status") |
||
| 178 | * @ODM\Index |
||
| 179 | */ |
||
| 180 | protected $status; |
||
| 181 | |||
| 182 | /** |
||
| 183 | * History on an job posting |
||
| 184 | * |
||
| 185 | * @var Collection |
||
| 186 | * @ODM\EmbedMany(targetDocument="History") |
||
| 187 | */ |
||
| 188 | protected $history; |
||
| 189 | |||
| 190 | /** |
||
| 191 | * Flag, privacy policy is accepted or not. |
||
| 192 | * |
||
| 193 | * @var bool |
||
| 194 | * @ODM\Boolean |
||
| 195 | */ |
||
| 196 | protected $termsAccepted; |
||
| 197 | |||
| 198 | /** |
||
| 199 | * Reference of a job opening, on which an applicant can refer to. |
||
| 200 | * |
||
| 201 | * @var String |
||
| 202 | * @ODM\Field(type="string") |
||
| 203 | */ |
||
| 204 | protected $reference; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Unified Resource Locator to the company-Logo |
||
| 208 | * |
||
| 209 | * @var String |
||
| 210 | * @ODM\Field(type="string") |
||
| 211 | */ |
||
| 212 | protected $logoRef; |
||
| 213 | |||
| 214 | /** |
||
| 215 | * Template-Name |
||
| 216 | * |
||
| 217 | * @var String |
||
| 218 | * @ODM\Field(type="string") |
||
| 219 | */ |
||
| 220 | protected $template; |
||
| 221 | |||
| 222 | /** |
||
| 223 | * Application link. |
||
| 224 | * |
||
| 225 | * @var String |
||
| 226 | * @ODM\Field(type="string") |
||
| 227 | */ |
||
| 228 | protected $uriApply; |
||
| 229 | |||
| 230 | /** |
||
| 231 | * Unified Resource Locator the Yawik, which handled this job first - so |
||
| 232 | * does know who is the one who has commited this job. |
||
| 233 | * |
||
| 234 | * @var String |
||
| 235 | * @ODM\Field(type="string") |
||
| 236 | */ |
||
| 237 | protected $uriPublisher; |
||
| 238 | |||
| 239 | /** |
||
| 240 | * @var |
||
| 241 | * @ODM\EmbedMany(targetDocument="Publisher") |
||
| 242 | */ |
||
| 243 | protected $publisher; |
||
| 244 | |||
| 245 | /** |
||
| 246 | * The ATS mode entity. |
||
| 247 | * |
||
| 248 | * @var AtsMode |
||
| 249 | * @ODM\EmbedOne(targetDocument="AtsMode") |
||
| 250 | */ |
||
| 251 | protected $atsMode; |
||
| 252 | |||
| 253 | /** |
||
| 254 | * this must be enabled to use applications forms etc. for this job or |
||
| 255 | * to see number of applications in the list of applications |
||
| 256 | * |
||
| 257 | * @var Boolean |
||
| 258 | * |
||
| 259 | * @ODM\Boolean |
||
| 260 | */ |
||
| 261 | protected $atsEnabled; |
||
| 262 | |||
| 263 | /** |
||
| 264 | * Permissions |
||
| 265 | * |
||
| 266 | * @var PermissionsInterface |
||
| 267 | * @ODM\EmbedOne(targetDocument="\Core\Entity\Permissions") |
||
| 268 | */ |
||
| 269 | protected $permissions; |
||
| 270 | |||
| 271 | /** |
||
| 272 | * The actual name of the organization. |
||
| 273 | * |
||
| 274 | * @var TemplateValues |
||
| 275 | * @ODM\EmbedOne(targetDocument="\Jobs\Entity\TemplateValues") |
||
| 276 | */ |
||
| 277 | protected $templateValues; |
||
| 278 | |||
| 279 | |||
| 280 | /** |
||
| 281 | * Can contain various Portals |
||
| 282 | * |
||
| 283 | * @var array |
||
| 284 | * @ODM\Collection*/ |
||
| 285 | protected $portals = array(); |
||
| 286 | |||
| 287 | /** |
||
| 288 | * Flag indicating draft state of this job. |
||
| 289 | * |
||
| 290 | * @var bool |
||
| 291 | * @ODM\Boolean |
||
| 292 | */ |
||
| 293 | protected $isDraft = false; |
||
| 294 | |||
| 295 | /** |
||
| 296 | * Classifications |
||
| 297 | * |
||
| 298 | * @ODM\EmbedOne(targetDocument="\Jobs\Entity\Classifications") |
||
| 299 | * @var Classifications |
||
| 300 | * @since 0.29 |
||
| 301 | */ |
||
| 302 | protected $classifications; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Delete flag. |
||
| 306 | * |
||
| 307 | * @internal |
||
| 308 | * This is meant as a temporary flag, until |
||
| 309 | * SoftDelete is implemented. |
||
| 310 | * |
||
| 311 | * @ODM\Field(type="boolean") |
||
| 312 | * @var bool |
||
| 313 | * @since 0.29 |
||
| 314 | */ |
||
| 315 | protected $isDeleted = false; |
||
| 316 | |||
| 317 | /** |
||
| 318 | * @return string |
||
| 319 | */ |
||
| 320 | public function getResourceId() |
||
| 324 | |||
| 325 | /** |
||
| 326 | * @see \Jobs\Entity\JobInterface::setApplyId() |
||
| 327 | * @param String $applyId |
||
| 328 | * @return \Jobs\Entity\JobInterface |
||
| 329 | */ |
||
| 330 | public function setApplyId($applyId) |
||
| 335 | /** |
||
| 336 | * @see \Jobs\Entity\JobInterface::getApplyId() |
||
| 337 | * @return String |
||
| 338 | */ |
||
| 339 | public function getApplyId() |
||
| 347 | |||
| 348 | /** |
||
| 349 | * Gets the title of a job posting |
||
| 350 | * |
||
| 351 | * @return string |
||
| 352 | */ |
||
| 353 | public function getTitle() |
||
| 357 | |||
| 358 | /** |
||
| 359 | * Sets the title of a job posting |
||
| 360 | * |
||
| 361 | * @see \Jobs\Entity\JobInterface::setTitle() |
||
| 362 | * @param String $title |
||
| 363 | * @return \Jobs\Entity\JobInterface |
||
| 364 | */ |
||
| 365 | public function setTitle($title) |
||
| 370 | |||
| 371 | /** |
||
| 372 | * Gets the name oof the company. If there is an organization assigned to the |
||
| 373 | * job posting. Take the name of the organization. |
||
| 374 | * |
||
| 375 | * (non-PHPdoc) |
||
| 376 | * @see \Jobs\Entity\JobInterface::getCompany() |
||
| 377 | */ |
||
| 378 | public function getCompany() |
||
| 385 | |||
| 386 | /** |
||
| 387 | * (non-PHPdoc) |
||
| 388 | * @see \Jobs\Entity\JobInterface::setCompany() |
||
| 389 | */ |
||
| 390 | public function setCompany($company) |
||
| 395 | |||
| 396 | /** |
||
| 397 | * (non-PHPdoc) |
||
| 398 | * @see \Jobs\Entity\JobInterface::getOrganization() |
||
| 399 | */ |
||
| 400 | public function getOrganization() |
||
| 404 | |||
| 405 | /** |
||
| 406 | * @inheritdoc |
||
| 407 | */ |
||
| 408 | public function setOrganization(OrganizationInterface $organization = null) |
||
| 420 | |||
| 421 | /** |
||
| 422 | * (non-PHPdoc) |
||
| 423 | * @see \Jobs\Entity\JobInterface::getContactEmail() |
||
| 424 | */ |
||
| 425 | public function getContactEmail() |
||
| 437 | |||
| 438 | /** |
||
| 439 | * (non-PHPdoc) |
||
| 440 | * @see \Jobs\Entity\JobInterface::setContactEmail() |
||
| 441 | */ |
||
| 442 | public function setContactEmail($email) |
||
| 447 | |||
| 448 | /** |
||
| 449 | * (non-PHPdoc) |
||
| 450 | * @see \Jobs\Entity\JobInterface::setLanguage() |
||
| 451 | */ |
||
| 452 | public function setLanguage($language) |
||
| 457 | /** |
||
| 458 | * (non-PHPdoc) |
||
| 459 | * @see \Jobs\Entity\JobInterface::getLanguage() |
||
| 460 | */ |
||
| 461 | public function getLanguage() |
||
| 465 | /** |
||
| 466 | * (non-PHPdoc) |
||
| 467 | * @see \Jobs\Entity\JobInterface::setLocation() |
||
| 468 | */ |
||
| 469 | public function setLocation($location) |
||
| 474 | /** |
||
| 475 | * (non-PHPdoc) |
||
| 476 | * @see \Jobs\Entity\JobInterface::getLocation() |
||
| 477 | */ |
||
| 478 | public function getLocation() |
||
| 491 | /** |
||
| 492 | * (non-PHPdoc) |
||
| 493 | * @see \Jobs\Entity\JobInterface::setLocations() |
||
| 494 | */ |
||
| 495 | public function setLocations($locations) |
||
| 500 | /** |
||
| 501 | * (non-PHPdoc) |
||
| 502 | * @see \Jobs\Entity\JobInterface::getLocations() |
||
| 503 | */ |
||
| 504 | public function getLocations() |
||
| 511 | /** |
||
| 512 | * (non-PHPdoc) |
||
| 513 | * @see \Jobs\Entity\JobInterface::setUser() |
||
| 514 | */ |
||
| 515 | View Code Duplication | public function setUser(UserInterface $user) |
|
| 524 | /** |
||
| 525 | * (non-PHPdoc) |
||
| 526 | * @see \Jobs\Entity\JobInterface::getUser() |
||
| 527 | */ |
||
| 528 | public function getUser() |
||
| 532 | |||
| 533 | public function unsetUser($removePermissions = true) |
||
| 544 | |||
| 545 | /** |
||
| 546 | * (non-PHPdoc) |
||
| 547 | * @see \Jobs\Entity\JobInterface::setApplications() |
||
| 548 | */ |
||
| 549 | public function setApplications(Collection $applications) |
||
| 554 | |||
| 555 | /** |
||
| 556 | * (non-PHPdoc) |
||
| 557 | * @see \Jobs\Entity\JobInterface::getApplications() |
||
| 558 | */ |
||
| 559 | public function getApplications() |
||
| 563 | |||
| 564 | /** |
||
| 565 | * Gets the number of unread applications |
||
| 566 | * @return Collection |
||
| 567 | */ |
||
| 568 | public function getUnreadApplications() |
||
| 572 | /** |
||
| 573 | * (non-PHPdoc) |
||
| 574 | * @see \Jobs\Entity\JobInterface::getLink() |
||
| 575 | */ |
||
| 576 | public function getLink() |
||
| 580 | /** |
||
| 581 | * (non-PHPdoc) |
||
| 582 | * @see \Jobs\Entity\JobInterface::setLink() |
||
| 583 | */ |
||
| 584 | public function setLink($link) |
||
| 589 | /** |
||
| 590 | * (non-PHPdoc) |
||
| 591 | * @see \Jobs\Entity\JobInterface::getDatePublishStart() |
||
| 592 | */ |
||
| 593 | public function getDatePublishStart() |
||
| 597 | /** |
||
| 598 | * (non-PHPdoc) |
||
| 599 | * @param string $datePublishStart |
||
| 600 | * @see \Jobs\Entity\JobInterface::setDatePublishStart() |
||
| 601 | * @return $this |
||
| 602 | */ |
||
| 603 | View Code Duplication | public function setDatePublishStart($datePublishStart = null) |
|
| 614 | |||
| 615 | /** |
||
| 616 | * (non-PHPdoc) |
||
| 617 | * @see \Jobs\Entity\JobInterface::getDatePublishStart() |
||
| 618 | */ |
||
| 619 | public function getDatePublishEnd() |
||
| 623 | /** |
||
| 624 | * (non-PHPdoc) |
||
| 625 | * @param string $datePublishEnd |
||
| 626 | * @see \Jobs\Entity\JobInterface::setDatePublishEnd() |
||
| 627 | * @return $this |
||
| 628 | */ |
||
| 629 | View Code Duplication | public function setDatePublishEnd($datePublishEnd = null) |
|
| 640 | |||
| 641 | /** |
||
| 642 | * Modifies the state of an application. |
||
| 643 | * |
||
| 644 | * Creates a history entry. |
||
| 645 | * |
||
| 646 | * @param StatusInterface|string $status |
||
| 647 | * @param string $message |
||
| 648 | * @return Job |
||
| 649 | */ |
||
| 650 | View Code Duplication | public function changeStatus($status, $message = '[System]') |
|
| 660 | |||
| 661 | /** |
||
| 662 | * (non-PHPdoc) |
||
| 663 | * @see \Jobs\Entity\JobInterface::getStatus() |
||
| 664 | */ |
||
| 665 | public function getStatus() |
||
| 669 | /** |
||
| 670 | * (non-PHPdoc) |
||
| 671 | * @see \Jobs\Entity\JobInterface::setStatus() |
||
| 672 | */ |
||
| 673 | public function setStatus($status) |
||
| 680 | |||
| 681 | /** |
||
| 682 | * {@inheritDoc} |
||
| 683 | * @see JobInterface::setHistory() |
||
| 684 | * @return Job |
||
| 685 | */ |
||
| 686 | public function setHistory(Collection $history) |
||
| 691 | |||
| 692 | /** |
||
| 693 | * {@inheritDoc} |
||
| 694 | * @see JobInterface::getHistory() |
||
| 695 | */ |
||
| 696 | public function getHistory() |
||
| 703 | |||
| 704 | /** |
||
| 705 | * {@inheritDoc} |
||
| 706 | * @see JobInterface::setTermsAccepted() |
||
| 707 | * @return self |
||
| 708 | */ |
||
| 709 | public function setTermsAccepted($termsAccepted) |
||
| 714 | |||
| 715 | /** |
||
| 716 | * {qinheritDoc} |
||
| 717 | * @see JobInterface::getTermsAccepted() |
||
| 718 | */ |
||
| 719 | public function getTermsAccepted() |
||
| 723 | |||
| 724 | /** |
||
| 725 | * (non-PHPdoc) |
||
| 726 | * @see JobInterface::getReference() |
||
| 727 | */ |
||
| 728 | public function getReference() |
||
| 732 | /** |
||
| 733 | * (non-PHPdoc) |
||
| 734 | * @see JobInterface::setReference() |
||
| 735 | */ |
||
| 736 | public function setReference($reference) |
||
| 741 | |||
| 742 | public function setAtsMode(AtsMode $mode) |
||
| 748 | |||
| 749 | public function getAtsMode() |
||
| 757 | |||
| 758 | |||
| 759 | /** |
||
| 760 | * checks, weather a job is enabled for getting applications |
||
| 761 | * @return boolean |
||
| 762 | */ |
||
| 763 | public function getAtsEnabled() |
||
| 767 | /** |
||
| 768 | * enables a job add to receive applications |
||
| 769 | * |
||
| 770 | * @param boolean $atsEnabled |
||
| 771 | * @return \Jobs\Entity\Job |
||
| 772 | */ |
||
| 773 | public function setAtsEnabled($atsEnabled) |
||
| 778 | /** |
||
| 779 | * returns an uri to the organization logo. |
||
| 780 | * |
||
| 781 | * @return string |
||
| 782 | */ |
||
| 783 | public function getLogoRef() |
||
| 793 | /** |
||
| 794 | * Set the uri to the organisations logo |
||
| 795 | * |
||
| 796 | * @param string $logoRef |
||
| 797 | * @return \Jobs\Entity\Job |
||
| 798 | */ |
||
| 799 | public function setLogoRef($logoRef) |
||
| 804 | |||
| 805 | /** |
||
| 806 | * |
||
| 807 | * |
||
| 808 | * @return string |
||
| 809 | */ |
||
| 810 | public function getTemplate() |
||
| 818 | /** |
||
| 819 | * |
||
| 820 | * |
||
| 821 | * @param string $template name of the Template |
||
| 822 | * @return \Jobs\Entity\Job |
||
| 823 | */ |
||
| 824 | public function setTemplate($template) |
||
| 829 | |||
| 830 | |||
| 831 | |||
| 832 | /** |
||
| 833 | * Gets the uri of an application link |
||
| 834 | * |
||
| 835 | * @return String |
||
| 836 | */ |
||
| 837 | public function getUriApply() |
||
| 841 | |||
| 842 | /** |
||
| 843 | * Sets the uri of an application link |
||
| 844 | * |
||
| 845 | * @param String $uriApply |
||
| 846 | * @return \Jobs\Entity\Job |
||
| 847 | */ |
||
| 848 | public function setUriApply($uriApply) |
||
| 853 | |||
| 854 | /** |
||
| 855 | * Gets the uri of a publisher |
||
| 856 | * |
||
| 857 | * @return String |
||
| 858 | */ |
||
| 859 | public function getUriPublisher() |
||
| 863 | /** |
||
| 864 | * |
||
| 865 | * @param String $uriPublisher |
||
| 866 | * @return \Jobs\Entity\Job |
||
| 867 | */ |
||
| 868 | public function setUriPublisher($uriPublisher) |
||
| 873 | |||
| 874 | /** |
||
| 875 | * @param $key |
||
| 876 | * @return mixed |
||
| 877 | */ |
||
| 878 | public function getPublisher($key) |
||
| 893 | |||
| 894 | public function setPublisherReference($key, $reference) |
||
| 900 | |||
| 901 | |||
| 902 | /** |
||
| 903 | * (non-PHPdoc) |
||
| 904 | * @see \Core\Entity\PermissionsAwareInterface::getPermissions() |
||
| 905 | */ |
||
| 906 | public function getPermissions() |
||
| 918 | |||
| 919 | /** |
||
| 920 | * (non-PHPdoc) |
||
| 921 | * @see \Core\Entity\PermissionsAwareInterface::setPermissions() |
||
| 922 | */ |
||
| 923 | public function setPermissions(PermissionsInterface $permissions) |
||
| 928 | |||
| 929 | /** |
||
| 930 | * Gets the Values of a job template |
||
| 931 | * |
||
| 932 | * @return TemplateValues |
||
| 933 | */ |
||
| 934 | public function getTemplateValues() |
||
| 941 | |||
| 942 | /** |
||
| 943 | * @param EntityInterface $templateValues |
||
| 944 | * |
||
| 945 | * @return $this |
||
| 946 | */ |
||
| 947 | public function setTemplateValues(EntityInterface $templateValues = null) |
||
| 955 | |||
| 956 | /** |
||
| 957 | * Sets the list of channels where a job opening should be published |
||
| 958 | * |
||
| 959 | * @param Array |
||
| 960 | * {@inheritdoc} |
||
| 961 | */ |
||
| 962 | public function setPortals(array $portals) |
||
| 967 | |||
| 968 | /** |
||
| 969 | * Gets the list of channels where the job opening should be published |
||
| 970 | * |
||
| 971 | * {@inheritdoc} |
||
| 972 | * @return Array |
||
| 973 | */ |
||
| 974 | public function getPortals() |
||
| 978 | |||
| 979 | /** |
||
| 980 | * Gets the flag indicating the draft state. |
||
| 981 | * |
||
| 982 | * @return bool |
||
| 983 | */ |
||
| 984 | public function isDraft() |
||
| 988 | |||
| 989 | /** |
||
| 990 | * Sets the flag indicating the draft state. |
||
| 991 | * |
||
| 992 | * @param boolean $flag |
||
| 993 | * @return DraftableEntityInterface |
||
| 994 | */ |
||
| 995 | public function setIsDraft($flag) |
||
| 1000 | |||
| 1001 | /** |
||
| 1002 | * Gets the status and checks it against 'active' |
||
| 1003 | * |
||
| 1004 | * @return bool |
||
| 1005 | */ |
||
| 1006 | public function isActive() |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * @return Job |
||
| 1013 | */ |
||
| 1014 | public function makeSnapshot() |
||
| 1019 | |||
| 1020 | /** |
||
| 1021 | * @return array|mixed |
||
| 1022 | */ |
||
| 1023 | public function getSnapshotGenerator() |
||
| 1032 | |||
| 1033 | /** |
||
| 1034 | * @param \Jobs\Entity\Classifications $classifications |
||
| 1035 | * |
||
| 1036 | * @return self |
||
| 1037 | */ |
||
| 1038 | public function setClassifications($classifications) |
||
| 1044 | |||
| 1045 | /** |
||
| 1046 | * @return \Jobs\Entity\Classifications |
||
| 1047 | */ |
||
| 1048 | public function getClassifications() |
||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * Mark this job as deleted. |
||
| 1059 | * |
||
| 1060 | * @internal |
||
| 1061 | * This is meant as temporary solution, until |
||
| 1062 | * SoftDelete is implemented. |
||
| 1063 | * |
||
| 1064 | * @return self |
||
| 1065 | * @since 0.29 |
||
| 1066 | */ |
||
| 1067 | public function delete() |
||
| 1073 | |||
| 1074 | public function isDeleted() |
||
| 1078 | |||
| 1079 | |||
| 1080 | } |
||
| 1081 |