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 {
28const DynamicsAppName = "Dynamics";
29
32
33public:
35 const ProviderInfo = ...;
36
37
39 const ConstructorOptions = ...;
40
41
43 const EnvOptions = ...;
44
45
47 const HttpMethods = ...;
48
49
50protected:
52 *hash<auto> meta;
53
55 Qore::Thread::Mutex lck();
56
57public:
58
60 constructor(CdsRestClient::CdsRestClient rest) ;
61
62
64 constructor(*hash<auto> options);
65
66
68 string getName();
69
70
72 setLogger(*LoggerInterface logger);
73
74
76
78protected:
80public:
81
82
84
88protected:
89 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
90public:
91
92
94protected:
95 *hash<auto> getMetadata();
96public:
97
98
100protected:
101 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
102public:
103
104
106protected:
107 static *hash<auto> getClientOptions(*hash<auto> copts);
108public:
109
110};
111};
The CdsRest data provider class.
Definition CdsRestDataProviderBase.qc.dox.h:28
static *hash< auto > getClientOptions(*hash< auto > copts)
Returns options for the CdsRestClient.
setLogger(*LoggerInterface logger)
Accepts a LoggerInterface object for logging (or clears it)
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.
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.
*hash< auto > meta
Metadata keyed by entity type.
Definition CdsRestDataProvider.qc.dox.h:52
constructor(*hash< auto > options)
Creates the object from constructor options.
Qore::Thread::Mutex lck()
Metadata mutex.
*hash< auto > getMetadata()
Returns metadata.
Qore CdsRestDataProvider module definition.
Definition CdsEntityDataProvider.qc.dox.h:26
const DynamicsAppName
Application name for Dynamics.
Definition CdsRestDataProvider.qc.dox.h:28