Qore SalesforceRestDataProvider Module Reference  1.0.1
SalesforceRestDataProvider.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
28 class SalesforceRestDataProvider : public AbstractDataProvider {
29 
30 public:
32  SalesforceRestClient rest;
33 
35  const ProviderInfo = ...;
36 
37 
39  const ConstructorOptions = ...;
40 
41 
43  const EnvOptions = ...;
44 
45 
47  const HttpMethods = ...;
48 
49 
51  constructor(SalesforceRestClient rest);
52 
53 
55  constructor(*hash<auto> options);
56 
57 
59  string getName();
60 
61 
63  *string getDesc();
64 
65 
67 
69 protected:
70  *list<string> getChildProviderNamesImpl();
71 public:
72 
73 
75 
79 protected:
80  *AbstractDataProvider getChildProviderImpl(string name);
81 public:
82 
83 
85 protected:
86  hash<DataProviderInfo> getStaticInfoImpl();
87 public:
88 
89 
91 protected:
92  static *hash<auto> getClientOptions(*hash<auto> copts);
93 public:
94 
95 };
96 };
Qore SalesforceRestDataProvider module definition.
Definition: SalesforceRestDataProvider.qc.dox.h:26
SalesforceRestClient rest
The REST client object for API calls.
Definition: SalesforceRestDataProvider.qc.dox.h:32