Qore SalesforceRestDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
SalesforceRestDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
35protected:
36 static hash<string, code> dynamic_children;
37
38 const ChildMap = ...;
39
40
41public:
42
44 constructor(SalesforceRestClient::SalesforceRestClient rest) ;
45
46
48 constructor(SalesforceRestClient::SalesforceRestConnection conn) ;
49
50
52 constructor(*hash<auto> options);
53
54
56 string getName();
57
58
60 *string getDesc();
61
62
64
67 static registerChild(string name, code generator);
68
70 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
71
72
74
76protected:
78public:
79
80
82
86protected:
87 *AbstractDataProvider getChildProviderImpl(string name);
88public:
89
90
92protected:
93 hash<DataProviderInfo> getStaticInfoImpl();
94public:
95
96};
97};
The SalesforceRest data provider class.
Definition SalesforceRestDataProviderBase.qc.dox.h:28
*string getDesc()
Returns the data provider description.
constructor(SalesforceRestClient::SalesforceRestConnection conn)
Creates the object from the arguments.
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
constructor(SalesforceRestClient::SalesforceRestClient rest)
Creates the object from the arguments.
constructor(*hash< auto > options)
Creates the object from constructor options.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
string getName()
Returns the data provider name.
static registerChild(string name, code generator)
Registers a child data provider.
Qore SalesforceRestDataProvider module definition.
Definition SalesforceRestDataProvider.qc.dox.h:26