-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappd.json
More file actions
88 lines (88 loc) · 2.29 KB
/
appd.json
File metadata and controls
88 lines (88 loc) · 2.29 KB
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
80
81
82
83
84
85
86
87
88
{
"appd": {
"Java FDC3 Desktop Client": {
"appId": "Java FDC3 Desktop Client",
"name": "Java FDC3 Desktop Client",
"description": "Java FDC3 Desktop Agent Client example app, by Cosaic.",
"manifest": {
"window": {
"id": "InteropServiceExampleApplication",
"windowType": "FinsembleNativeWindow",
"path": "/path/to/javaw",
"arguments": "-jar $javaExampleJarRoot/InteropServiceExampleApplication.jar",
"defaultHeight": 600,
"autoShow": true,
"alwaysOnTop": false,
"resizable": true,
"showTaskbarIcon": false,
"contextMenu": true,
"addToWorkspace": true,
"options": {
"customData": {
"authenticationToken": "fooBar"
}
}
},
"component": {
"mode": "native",
"category": "system"
},
"foreign": {
"services": {
"workspaceService": {
"allowAutoArrange": true
}
},
"components": {
"App Launcher": {
"launchableByUser": true
},
"Window Manager": {
"persistWindowState": false,
"FSBLHeader": true
},
"Toolbar": {
"iconURL": "$applicationRoot/assets/img/notepad.png"
}
}
},
"interop": {
"rewire": [
{
"contextType": "layout",
"fwd": "#Workspace"
},
{
"contextType": "fdc3.instrument",
"cc": "#Workspace"
}
]
}
},
"version": "1.0.0",
"tooltip": "ChartIQ Technical Chart",
"images": [
{
"url": "https://i.imgur.com/10C3LdH.png",
"tooltip": "ChartIQ FDC3 compatible chart"
}
],
"tags": ["fdc3"],
"contactEmail": "info@cosaic.io",
"supportEmail": "support@finsemble.com",
"publisher": "Cosaic",
"icons": [
{
"url": "https://i.imgur.com/mpBdiHd.png"
}
],
"intents": [
{
"name": "ViewChart",
"displayName": "View Chart",
"contexts": ["fdc3.instrument"]
}
]
}
}
}