-
Notifications
You must be signed in to change notification settings - Fork 25
/
pluginDefinition.json
79 lines (79 loc) · 1.98 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
77
78
79
{
"identifier": "org.zowe.zlux.sample.angular",
"apiVersion": "2.0.0",
"pluginVersion": "2.18.1",
"pluginType": "application",
"license": "EPL-2.0",
"author": "Zowe",
"homepage": "https://github.com/zowe/sample-angular-app",
"webContent": {
"framework": "angular",
"launchDefinition": {
"pluginShortNameKey": "sampleangular",
"pluginShortNameDefault": "Angular Sample",
"imageSrc": "assets/icon.png"
},
"descriptionKey": "sampleangulardescription",
"descriptionDefault": "Sample App Showcasing Angular Adapter",
"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",
"libraryName31": "storage31.so",
"libraryName64": "storage64.so",
"dependenciesIncluded": true,
"methods": [
"GET",
"POST",
"DELETE"
],
"initializerName": "storageServiceInstaller",
"initializerLookupMethod": "external",
"version": "0.0.1"
}
],
"configurationData": {
"resources": {
"requests": {
"aggregationPolicy": "override",
"subResources": {
"app": {
"aggregationPolicy": "override"
}
}
}
}
}
}