Qore ServiceNowRestDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
ServiceNowRestDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class ServiceNowRestDataProviderFactory : public DataProvider::AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("ServiceNowRestDataProvider");
34
36 const FactoryInfo = ...;
37
38
39public:
40
42
44protected:
45 hash<DataProviderFactoryInfo> getInfoImpl();
46public:
47
48
50
52protected:
53 hash<DataProvider::DataProviderInfo> getProviderInfoImpl();
54public:
55
56
58protected:
59 Class getClassImpl();
60public:
61
62};
63};
The ServiceNowRest data provider factory.
Definition ServiceNowRestDataProviderFactory.qc.dox.h:28
Class getClassImpl()
Returns the class for the data provider object.
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
const FactoryInfo
Factory info.
Definition ServiceNowRestDataProviderFactory.qc.dox.h:36
static Class cls
Data provider type info.
Definition ServiceNowRestDataProviderFactory.qc.dox.h:33
hash< DataProvider::DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
Qore ServiceNowRestDataProvider module definition.
Definition ServiceNowRestDataProvider.qc.dox.h:26