DownloadObjectRequestDataClass.php
1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/**
* @class DownloadObjectTypeEnumClass
* @brief Enumerate for download request type
* @details
*/
abstract class DownloadObjectTypeEnumClass
{
const UNKNOWN = "";
const ASTROIMG = "astro_image";
}
/**
* @class DownloadObjectFormatEnumClass
* @brief Enumerate for download extention request type
* @details
*/
abstract class DownloadObjectFormatEnumClass
{
const UNKNOWN = "";
const ZIP = "zip";
}
/**
* @class DownloadObjectRequestDataClass
* @brief Data for a download request
* @details
*/
class DownloadObjectRequestDataClass extends RequestDataClass
{
private $type = DownloadObjectTypeEnumClass::UNKNOWN;
private $files = array();
private $compression = DownloadObjectFormatEnumClass::ZIP;
private $workingPath = "";
private $outputPath = "";
public function getType()
{
return $this->type;
}
public function setType($type)
{
$this->type = $type;
}
public function getFiles()
{
return $this->files;
}
public function addFile($name, $url)
{
$this->files[$name] = $url;
}
public function getWorkingPath()
{
return $this->workingPath;
}
public function setWorkingPath($workingPath)
{
$this->workingPath = $workingPath;
}
public function getOutputPath()
{
return $this->outputPath;
}
public function setOutputPath($outputPath)
{
$this->outputPath = $outputPath;
}
public function getCompressionFormat()
{
return $this->compression;
}
public function setCompressionFormat($compression)
{
$this->compression = $compression;
}
}