forked from zowe/sample-angular-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginDefinition.json
76 lines (76 loc) · 1.87 KB
/
pluginDefinition.json
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
74
75
76
{
"identifier": "org.zowe.zlux.sample.angular",
"apiVersion": "1.0.0",
"pluginVersion": "1.2.1",
"pluginType": "application",
"webContent": {
"framework": "angular2",
"launchDefinition": {
"pluginShortNameKey": "sampleangular",
"pluginShortNameDefault": "Angular Sample",
"imageSrc": "assets/icon.png"
},
"descriptionKey": "sampleangulardescription",
"descriptionDefault": "Sample App Showcasing Angular Adapter",
"isSingleWindowApp": true,
"defaultWindowStyle": {
"width": 850,
"height": 540
}
},
"dataServices": [
{
"type": "router",
"name": "hello",
"filename": "helloWorld.js",
"routerFactory": "helloWorldRouter",
"dependenciesIncluded": true,
"initializerLookupMethod": "external",
"version": "1.0.1"
},
{
"type": "router",
"name": "callservice",
"filename": "callService.js",
"routerFactory": "callServiceRouter",
"dependenciesIncluded": true,
"initializerLookupMethod": "external",
"version": "1.0.0"
},
{
"type": "router",
"name": "appServerStorage",
"filename": "storage.js",
"routerFactory": "storageRouter",
"dependenciesIncluded": true,
"initializerLookupMethod": "external",
"version": "1.0.1"
},
{
"type": "service",
"name": "zssStorage",
"libraryName": "storage.so",
"dependenciesIncluded": true,
"methods": [
"GET",
"POST",
"DELETE"
],
"initializerName": "storageServiceInstaller",
"initializerLookupMethod": "external",
"version": "0.0.1"
}
],
"configurationData": {
"resources": {
"requests": {
"aggregationPolicy": "override",
"subResources": {
"app": {
"aggregationPolicy": "override"
}
}
}
}
}
}