FOSSology  4.4.0
Open Source License Compliance by Open Source Software
LicenseClearing.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2014-2015 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 namespace Fossology\Lib\Data\Clearing;
8 
10 
11 interface LicenseClearing
12 {
14  public function getEventType();
16  public function isRemoved();
18  public function getLicenseRef();
20  public function getLicenseId();
22  public function getLicenseShortName();
24  public function getLicenseFullName();
26  public function getTimeStamp();
27 }