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