Qore SwaggerDataProvider Module Reference 1.3
Loading...
Searching...
No Matches
SwaggerDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace SwaggerDataProvider {
28class SwaggerDataProviderFactory : public AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("SwaggerDataProvider");
34
36 const FactoryInfo = <DataProviderFactoryInfo>{
37 "name": "swagger",
38 "desc": "Swagger API data provider factory",
39 "api_management": True,
40 "children_can_support_apis": True,
41 "api_profiles": "rest",
42 };
43
44public:
45
47
49protected:
50 hash<DataProviderFactoryInfo> getInfoImpl();
51public:
52
53
55
57protected:
58 hash<DataProviderInfo> getProviderInfoImpl();
59public:
60
61
63protected:
64 Class getClassImpl();
65public:
66
67};
68};
The Swagger data provider factory.
Definition: SwaggerDataProviderFactory.qc.dox.h:28
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
const FactoryInfo
Factory info.
Definition: SwaggerDataProviderFactory.qc.dox.h:36
Class getClassImpl()
Returns the class for the data provider object.
static Class cls
Data provider type info.
Definition: SwaggerDataProviderFactory.qc.dox.h:33
Qore SwaggerDataProvider module definition.
Definition: SwaggerDataProvider.qc.dox.h:26