Qore CdsRestDataProvider Module Reference 2.0.0
Loading...
Searching...
No Matches
CdsRestDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace CdsRestDataProvider {
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(CdsRestClient::CdsRestClient rest) ;
45
46
48 constructor(CdsRestClient::CdsRestConnection conn) ;
49
50
52 constructor(*hash<auto> options);
53
54
56 string getName();
57
58
60
63 static registerChild(string name, code generator);
64
66 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
67
68
70
72protected:
74public:
75
76
78
82protected:
83 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
84public:
85
86
88protected:
89 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
90public:
91
92};
93};
The CdsRest data provider class.
Definition CdsRestDataProviderBase.qc.dox.h:28
constructor(CdsRestClient::CdsRestClient rest)
Creates the object from the arguments.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
string getName()
Returns the data provider name.
constructor(*hash< auto > options)
Creates the object from constructor options.
constructor(CdsRestClient::CdsRestConnection conn)
Creates the object from the arguments.
static registerChild(string name, code generator)
Registers a child data provider.
Qore CdsRestDataProvider module definition.
Definition CdsEntityDataProvider.qc.dox.h:26