Qore SalesforceRestDataProvider Module Reference  1.0.1
SalesforceRestDataProvider.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 // minimum required Qore version
26 // assume local scope for variables, do not use "$" signs
27 // require type definitions everywhere
28 // strict argument handling
29 // enable all warnings
30 
34 class SalesforceRestDataProvider : public AbstractDataProvider {
35 
36 public:
38  SalesforceRestClient rest;
39 
41  const ProviderInfo = ...;
42 
43 
45  const ConstructorOptions = ...;
46 
47 
49  const EnvOptions = ...;
50 
51 
53  const HttpMethods = ...;
54 
55 
57  constructor(SalesforceRestClient rest);
58 
59 
61  constructor(*hash<auto> options);
62 
63 
65  string getName();
66 
67 
69 
71 protected:
72  *list<string> getChildProviderNamesImpl();
73 public:
74 
75 
77 
81 protected:
82  *AbstractDataProvider getChildProviderImpl(string name);
83 public:
84 
85 
87 protected:
88  hash<DataProviderInfo> getStaticInfoImpl();
89 public:
90 
91 
93 protected:
94  static *hash<auto> getClientOptions(*hash<auto> copts);
95 public:
96 
97 };
98 };
Qore SalesforceRestDataProvider module definition.
Definition: SalesforceRestDataProvider.qc.dox.h:32
SalesforceRestClient rest
The REST client object for API calls.
Definition: SalesforceRestDataProvider.qc.dox.h:38