Qore ServiceNowRestDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
ServiceNowRestDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28const AppName = "ServiceNow";
29
32
33public:
35 const ProviderInfo = ...;
36
37
39 const ConstructorOptions = ...;
40
41
43 const EnvOptions = ...;
44
45
47 constructor(ServiceNowRestClient::ServiceNowRestClient rest) ;
48
49
51 constructor(*hash<auto> options);
52
53
55 string getName();
56
57
59 string getDesc();
60
61
63protected:
64 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
65public:
66
67
69
71protected:
73public:
74
75
77
81protected:
82 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
83public:
84
85
87protected:
88 static *hash<auto> getClientOptions(*hash<auto> copts);
89public:
90
91};
92};
The ServiceNowRest data provider class.
Definition ServiceNowRestDataProviderBase.qc.dox.h:28
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
constructor(*hash< auto > options)
Creates the object from constructor options.
string getName()
Returns the data provider name.
string getDesc()
Returns the data provider description.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
static *hash< auto > getClientOptions(*hash< auto > copts)
Returns options for the ServiceNowRestClient.
constructor(ServiceNowRestClient::ServiceNowRestClient rest)
Creates the object from the arguments.
Qore ServiceNowRestDataProvider module definition.
Definition ServiceNowRestDataProvider.qc.dox.h:26
const AppName
Application name.
Definition ServiceNowRestDataProvider.qc.dox.h:28