ILIAS  release_7 Revision v7.30-3-g800a261c036
ARStakeholder.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use ActiveRecord;
6 
13 {
14 
18  public function getConnectorContainerName() : string
19  {
20  return 'il_resource_stakeh';
21  }
22 
31  protected $internal;
39  protected $identification;
47  protected $stakeholder_id;
54  protected $stakeholder_class;
55 
59  public function getInternal() : string
60  {
61  return $this->internal;
62  }
63 
68  public function setInternal(string $internal) : ARStakeholder
69  {
70  $this->internal = $internal;
71  return $this;
72  }
73 
77  public function getIdentification() : string
78  {
79  return $this->identification;
80  }
81 
87  {
88  $this->identification = $identification;
89  return $this;
90  }
91 
95  public function getStakeholderId() : string
96  {
97  return $this->stakeholder_id;
98  }
99 
105  {
106  $this->stakeholder_id = $stakeholder_id;
107  return $this;
108  }
109 
113  public function getStakeholderClass() : string
114  {
116  }
117 
123  {
124  $this->stakeholder_class = $stakeholder_class;
125  return $this;
126  }
127 
128 }