| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- class Document {
- private $id = NULL;
- private $fileName = NULL;
- private $path = NULL;
- private $labelId = NULL;
- private $draft = NULL;
- private $created = NULL;
- private $lastChange = NULL;
- public function __construct($id, $fileName, $path, $labelId, $draft, $created, $lastChange) {
- $this->id = $id;
- $this->fileName = $fileName;
- $this->path = $path;
- $this->labelId = $labelId;
- $this->draft = $draft;
- $this->created = $created;
- $this->lastChange = $lastChange;
- }
- public function getId() {
- return $this->id;
- }
- public function getFileName() {
- return $this->fileName;
- }
- public function getPath() {
- return $this->path;
- }
- public function getDraft() {
- return $this->draft;
- }
- public function getCreated() {
- return $this->created;
- }
- public function getLastChange() {
- return $this->lastChange;
- }
- }
- ?>
|