FOSSology  4.4.0
Open Source License Compliance by Open Source Software
Folder.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\Folder;
9 
10 class Folder
11 {
12 
14  private $id;
15 
17  private $name;
18 
20  private $description;
21 
23  private $permissions;
24 
31  public function __construct($id, $name, $description, $permissions)
32  {
33  $this->id = $id;
34  $this->name = $name;
35  $this->description = $description;
36  $this->permissions = $permissions;
37  }
38 
42  public function getDescription()
43  {
44  return $this->description;
45  }
46 
50  public function getId()
51  {
52  return $this->id;
53  }
54 
58  public function getName()
59  {
60  return $this->name;
61  }
62 
66  public function getPermissions()
67  {
68  return $this->permissions;
69  }
70 }
__construct($id, $name, $description, $permissions)
Definition: Folder.php:31