RequestOutputDataMiningNodeClass.php
2.97 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
define ("REQUESTOUTPUTDATAMINING_NAME", "dataMining");
define ("REQUESTOUTPUTDATAMINING_TIMEFORMAT", "timeFormat");
define ("REQUESTOUTPUTDATAMINING_FILEFORMAT", "fileFormat");
define ("REQUESTOUTPUTDATAMINING_STRUCTURE", "outputStructure");
define ("REQUESTOUTPUTDATAMINING_FILENAME", "fileName");
define ("REQUESTOUTPUTDATAMININGPARAM_NAME", "param");
define ("REQUESTOUTPUTDATAMININGPARAM_ID", "id");
abstract class RequestOutputDataMiningTimeFormatEnum
{
const UNKNOWN = "";
const ISO = "ISO";
}
abstract class RequestOutputDataMiningFileFormatEnum
{
const UNKNOWN = "";
const ASCII = "ASCII";
const XML = "XML";
const VOT = "VOT";
}
abstract class RequestOutputDataMiningStructureEnum
{
const UNKNOWN = "";
const ONE_FILE = "one-file";
const ONE_FILE_PER_INTERVAL = "one-file-per-interval";
}
class RequestOutputDataMiningParamNodeClass extends NodeClass
{
public function __construct()
{
parent::__construct(REQUESTOUTPUTDATAMININGPARAM_NAME);
}
public function setId($id)
{
$this->setAttribute(REQUESTOUTPUTDATAMININGPARAM_ID, $id);
}
public function getId()
{
return $this->getAttribute(REQUESTOUTPUTDATAMININGPARAM_ID);
}
}
/**
* @class RequestOutputDataMiningNodeClass
* @brief Definition of a request data mining output node for AMDA_Kernel
* @details
*/
class RequestOutputDataMiningNodeClass extends NodeClass
{
public function __construct()
{
parent::__construct(REQUESTOUTPUTDATAMINING_NAME);
}
public function setTimeFormat($timeFormat)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTDATAMINING_TIMEFORMAT, true);
$node->setValue($timeFormat);
}
public function setFileFormat($fileFormat)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTDATAMINING_FILEFORMAT, true);
$node->setValue($fileFormat);
}
public function setStructure($structure)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTDATAMINING_STRUCTURE, true);
$node->setValue($structure);
}
public function setFileName($fileName)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTDATAMINING_FILENAME, true);
$node->setValue($fileName);
}
public function setParam($id)
{
$node = $this->getFirstChildByName(REQUESTOUTPUTDATAMININGPARAM_NAME);
if (!$node)
{
$node = new RequestOutputDataMiningParamNodeClass();
$this->addChild($node);
}
$node->setId($id);
}
public function addPostProcessing($process)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPOSTPROCESSING_NAME);
if ($node == NULL)
{
$node = new RequestOutputPostProcessingNodeClass();
$this->addChild($node);
}
$node->addPostProcessing($process);
}
public function isPostProcessing($process)
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPOSTPROCESSING_NAME);
if ($node == NULL)
return false;
return $node->isPostProcessing($process);
}
}
?>