Qore MewsRestDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
MewsRestDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace MewsRestDataProvider {
28const AppName = "Mews";
29
32
33public:
35 const ProviderInfo = ...;
36
37
39 const ConstructorOptions = ...;
40
41
42protected:
43 const ChildMap = ...;
44
45
46public:
47
49 constructor(*hash<auto> options);
50
51
53 constructor(MewsRestClient mews) ;
54
55
57 string getName();
58
59
61 *string getDesc();
62
63
65 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
66
67
69
71protected:
73public:
74
75
77
81protected:
82 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
83public:
84
85
87protected:
88 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
89public:
90
91};
92};
The MewsRest data provider base class.
Definition MewsRestDataProviderBase.qc.dox.h:28
*string getDesc()
Returns the data provider description.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
constructor(MewsRestClient mews)
Creates the object from the REST client.
string getName()
Returns the data provider name.
Qore MewsRestDataProvider module definition.
Definition MewsRestAccountNotesTableDataProvider.qc.dox.h:26
const AppName
MewsRest app name.
Definition MewsRestDataProvider.qc.dox.h:28