FOSSology  4.7.1
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  const KOTOBA = 6;
21 
22  public function __construct()
23  {
24  parent::__construct("license decision type");
25 
26  $this->map = array(
27  self::USER => "User decision",
28  self::BULK => "Bulk",
29  self::AGENT => "User confirmed agent finding",
30  self::IMPORT => "Imported decision",
31  self::AUTO => "Auto Concluded",
32  self::KOTOBA => "Kotoba"
33  );
34  }
35 }