FOSSology  4.5.0-rc1
Open Source License Compliance by Open Source Software
ClearingEventTypes.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2014 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 namespace Fossology\Lib\Data\Clearing;
9 
11 
13 {
14 
15  const USER = 1;
16  const BULK = 2;
17  const AGENT = 3;
18  const IMPORT = 4;
19  const AUTO = 5;
20 
21  public function __construct()
22  {
23  parent::__construct("license decision type");
24 
25  $this->map = array(
26  self::USER => "User decision",
27  self::BULK => "Bulk",
28  self::AGENT => "User confirmed agent finding",
29  self::IMPORT => "Imported decision",
30  self::AUTO => "Auto Concluded"
31  );
32  }
33 }