<?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 PARAMSINFOGEN = "params_info_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 DLOBJECT = "download_object"; const PARAMINFO = "param_info"; const USERWSINIT = "user_init"; } ?>