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