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 };
SalesforceRestDataProvider::SalesforceRestDataProvider::getChildProviderImpl
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or NOTHING if the given child is unknown.
SalesforceRestDataProvider::SalesforceRestDataProvider::getStaticInfoImpl
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
SalesforceRestDataProvider::SalesforceRestDataProvider::constructor
constructor(*hash< auto > options)
Creates the object from constructor options.
SalesforceRestDataProvider::SalesforceRestDataProvider::getName
string getName()
Returns the data provider name.
SalesforceRestDataProvider::SalesforceRestDataProvider::getChildProviderNamesImpl
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
SalesforceRestDataProvider::SalesforceRestDataProvider::getClientOptions
static *hash< auto > getClientOptions(*hash< auto > copts)
Returns options for the SalesforceRestClient.
SalesforceRestDataProvider
Qore SalesforceRestDataProvider module definition.
Definition: SalesforceRestDataProvider.qc.dox.h:32
SalesforceRestDataProvider::SalesforceRestDataProvider::constructor
constructor(SalesforceRestClient rest)
Creates the object from the arguments.
SalesforceRestDataProvider::SalesforceRestDataProvider::rest
SalesforceRestClient rest
The REST client object for API calls.
Definition: SalesforceRestDataProvider.qc.dox.h:38