ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilCertificateQueueEntry.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8{
12 private $objId;
13
17 private $userId;
18
23
27 private $state;
28
33
37 private $id;
38
42 private $templateId;
43
53 public function __construct(
54 int $objId,
55 int $userId,
56 string $adapterClass,
57 string $state,
58 int $templateId,
59 int $startedTimestamp = null,
60 int $id = null
61 ) {
62 $this->objId = $objId;
63 $this->userId = $userId;
64 $this->adapterClass = $adapterClass;
65 $this->state = $state;
66 $this->templateId = $templateId;
67 $this->startedTimestamp = $startedTimestamp;
68 $this->id = $id;
69 }
70
74 public function getObjId() : int
75 {
76 return $this->objId;
77 }
78
82 public function getUserId() : int
83 {
84 return $this->userId;
85 }
86
90 public function getAdapterClass() : string
91 {
93 }
94
98 public function getState() : string
99 {
100 return $this->state;
101 }
102
106 public function getStartedTimestamp()
107 {
109 }
110
114 public function getId()
115 {
116 return $this->id;
117 }
118
122 public function getTemplateId() : int
123 {
124 return $this->templateId;
125 }
126}
An exception for terminatinating execution or to throw for unit testing.
__construct(int $objId, int $userId, string $adapterClass, string $state, int $templateId, int $startedTimestamp=null, int $id=null)