ILIAS  release_8 Revision v8.24
class.ilCertificateQueueEntry.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
25{
26 private int $objId;
27 private int $userId;
28 private string $adapterClass;
29 private string $state;
30 private ?int $startedTimestamp;
31 private ?int $id;
32 private int $templateId;
33
34 public function __construct(
35 int $objId,
36 int $userId,
37 string $adapterClass,
38 string $state,
39 int $templateId,
40 ?int $startedTimestamp = null,
41 ?int $id = null
42 ) {
43 $this->objId = $objId;
44 $this->userId = $userId;
45 $this->adapterClass = $adapterClass;
46 $this->state = $state;
47 $this->templateId = $templateId;
48 $this->startedTimestamp = $startedTimestamp;
49 $this->id = $id;
50 }
51
52 public function getObjId(): int
53 {
54 return $this->objId;
55 }
56
57 public function getUserId(): int
58 {
59 return $this->userId;
60 }
61
62 public function getAdapterClass(): string
63 {
65 }
66
67 public function getState(): string
68 {
69 return $this->state;
70 }
71
72 public function getStartedTimestamp(): int
73 {
75 }
76
77 public function getId(): ?int
78 {
79 return $this->id;
80 }
81
82 public function getTemplateId(): int
83 {
84 return $this->templateId;
85 }
86}
__construct(int $objId, int $userId, string $adapterClass, string $state, int $templateId, ?int $startedTimestamp=null, ?int $id=null)