-
Notifications
You must be signed in to change notification settings - Fork 6
/
ModuleConfig.cfc
73 lines (61 loc) · 1.53 KB
/
ModuleConfig.cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* Copyright Ortus Solutions, Corp, All rights reserved
* www.ortussolutions.com
* ---
*/
component {
// Module Properties
this.title = "ColdBox Swagger SDK";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = "Swagger SDK Module";
this.version = "@build.version@[email protected]@";
this.viewParentLookup = true;
this.layoutParentLookup = true;
// Model Namespace
this.modelNamespace = "SwaggerSDK";
// CF Mapping
this.cfmapping = "SwaggerSDK";
// Auto-map models
this.autoMapModels = false;
// Module Dependencies That Must Be Loaded First, use internal names or aliases
this.dependencies = [ "cbjavaloader" ];
/**
* Configure App
*/
function configure(){
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
// load jars
wirebox.getInstance( "loader@cbjavaloader" )
.appendPaths( variables.modulePath & "/lib" );
/**
* Utilities
*
*/
// Open API Util
binder
.map( "OpenAPIUtil@SwaggerSDK" )
.to( "#moduleMapping#.models.OpenAPI.Util" )
.mixins( "/#this.cfmapping#/models/mixins/hashMap.cfm" )
.asSingleton();
/**
* Manual Instantiation Instances
*
*/
// models.OpenAPI.Document
binder
.map( "OpenAPIDocument@SwaggerSDK" )
.to( "#moduleMapping#.models.OpenAPI.Document" )
.noInit();
// models.OpenAPI.Parser
binder
.map( "OpenAPIParser@SwaggerSDK" )
.to( "#moduleMapping#.models.OpenAPI.Parser" )
.mixins( "/#this.cfmapping#/models/mixins/hashMap.cfm" )
.noInit();
}
}