generated from coldbox-modules/module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModuleConfig.cfc
43 lines (35 loc) · 944 Bytes
/
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
/**
* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp
* www.ortussolutions.com
* ---
* Core Java proxies for creating dynamic proxies to the SDK
*/
component {
// Module Properties
this.title = "cbproxies";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = "This module allows CFML apps to create dynamic proxies to core Java interfaces and preserve its environment when ran asynchronously.";
this.version = "@build.version@[email protected]@";
// Model Namespace
this.modelNamespace = "cbproxies";
// CF Mapping
this.cfmapping = "cbproxies";
// Dependencies
this.dependencies = [];
/**
* Configure Module
*/
function configure(){
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
}
/**
* Fired when the module is unregistered and unloaded
*/
function onUnload(){
}
}