Qore SwaggerDataProvider Module Reference  1.2.3
SwaggerDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace SwaggerDataProvider {
28 class SwaggerDataProviderFactory : public AbstractDataProviderFactory {
29 
30 public:
31 protected:
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 
44 public:
45 
47 
49 protected:
50  hash<DataProviderFactoryInfo> getInfoImpl();
51 public:
52 
53 
55 
57 protected:
58  hash<DataProviderInfo> getProviderInfoImpl();
59 public:
60 
61 
63 protected:
64  Class getClassImpl();
65 public:
66 
67 };
68 };
The Swagger data provider factory.
Definition: SwaggerDataProviderFactory.qc.dox.h:28
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
const FactoryInfo
Factory info.
Definition: SwaggerDataProviderFactory.qc.dox.h:36
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
Class getClassImpl()
Returns the class for the data provider object.
static Class cls
Data provider type info.
Definition: SwaggerDataProviderFactory.qc.dox.h:33
const True
Qore SwaggerDataProvider module definition.
Definition: SwaggerDataProvider.qc.dox.h:26