Blame view

src/FunctionTypeEnumClass.php 691 Bytes
cc3bdb0e   Elena.Budnik   RequestManager sp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * @class FunctionTypeEnumClass
 * @brief Abstract class used as an enumerate for function type.
 * @details
*/
abstract class FunctionTypeEnumClass
{
	const PARAMS             = "params";
	const PARAMSGEN          = "params_gen";
	const ACTION             = "action";
	const PROCESSDELETE      = "process_delete";
	const PROCESSRUNNINGINFO = "process_running_info";
	const PROCESSGETINFO     = "process_get_info";
	const PROCESSCLEAN       = "process_clean";
	const PROCESSGETREQUEST  = "process_get_request";
	const TTMERGE            = "tt_merge";
	const TTUNION            = "tt_union";
	const TTCONVERT          = "tt_convert";
	const PARAMINFO          = "param_info";
}
?>