forked from rdkcentral/rdkservices
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DELIA-42480 : Restoring *Plugin.json files
- Loading branch information
Showing
11 changed files
with
481 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"$schema": "interface.schema.json", | ||
"jsonrpc": "2.0", | ||
"info": { | ||
"title": "Device Identification API", | ||
"class": "DeviceIdentification", | ||
"description": "DeviceIdentification JSON-RPC interface" | ||
}, | ||
"properties": { | ||
"deviceidentification": { | ||
"summary": "Device paltform specific information", | ||
"readonly": true, | ||
"params": { | ||
"type": "object", | ||
"properties": { | ||
"firmwareversion": { | ||
"description": "Version of the device firmware", | ||
"example": "1.0.0", | ||
"type": "string" | ||
}, | ||
"chipset": { | ||
"description": "Chipset used for this device", | ||
"example": "BCM2711", | ||
"type": "string" | ||
}, | ||
"identifier": { | ||
"description": "Device unique identifier", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"firmwareversion", | ||
"chipset" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Device Info Plugin", | ||
"callsign": "DeviceInfo", | ||
"locator": "libWPEFrameworkDeviceInfo.so", | ||
"status": "production", | ||
"description": "The DeviceInfo plugin allows retrieving of various device-related information.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/DeviceInfo.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Display Info Plugin", | ||
"callsign": "DisplayInfo", | ||
"locator": "libWPEFrameworkDisplayInfo.so", | ||
"status": "production", | ||
"description": "The DisplayInfo plugin allows retrieving of various display-related information.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/DisplayInfo.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Location Sync Plugin", | ||
"callsign": "LocationSync", | ||
"locator": "libWPELocationSync.so", | ||
"status": "production", | ||
"description": "The LocationSync plugin provides geo-location functionality.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/LocationSync.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"document": { | ||
"$ref": "docs_common.json" | ||
}, | ||
"info": { | ||
"title": "Messenger Plugin", | ||
"version": "1.0", | ||
"callsign": "Messenger", | ||
"locator": "libWPEFrameworkMessenger.so", | ||
"status": "alpha", | ||
"description": "The Messenger allows exchanging text messages between users gathered in virtual rooms. The rooms are dynamically created and destroyed based on user attendance. Upon joining a room the client receives a unique token (room ID) to be used for sending and receiving the messages." | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/Messenger.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Monitor Plugin", | ||
"callsign": "Monitor", | ||
"locator": "libWPEFrameworkMonitor.so", | ||
"status": "production", | ||
"description": "The Monitor plugin provides a watchdog-like functionality for framework processes.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/Monitor.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "OpenCDMi Plugin", | ||
"callsign": "OCDM", | ||
"locator": "libWPEFrameworkOCDM.so", | ||
"status": "production", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/OCDM.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Security Agent Plugin", | ||
"callsign": "SecurityAgent", | ||
"locator": "libWPEFrameworkSecurityAgent.so", | ||
"status": "production", | ||
"description": "Security Agent of thunder is responsible to allow or block access to the Thunder API.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/SecurityAgent.json#" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
{ | ||
"assign": [ | ||
{ | ||
"url": "*://localhost", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://localhost:*", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://127.0.0.1", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://127.0.0.1:*", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://[::1]", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://[::1]:*", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://[0:0:0:0:0:0:0:1]", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://[0:0:0:0:0:0:0:1]:*", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "file://*", | ||
"role": "local" | ||
}, | ||
{ | ||
"url": "*://*.comcast.com", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*://*.comcast.com:*", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*://*.comcast.net", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*://*.comcast.net:*", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*.x1.xcal.tv", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*.x1.xcal.tv:*", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*.x1-app.xcr.comcast.net", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*.x1-app.xcr.comcast.net:*", | ||
"role": "comcast" | ||
}, | ||
{ | ||
"url": "*://www.pxscene.org", | ||
"role": "pxscene.org" | ||
}, | ||
{ | ||
"url": "*://www.pxscene.org:*", | ||
"role": "pxscene.org" | ||
}, | ||
{ | ||
"url": "*://pxscene.org", | ||
"role": "pxscene.org" | ||
}, | ||
{ | ||
"url": "*://pxscene.org:*", | ||
"role": "pxscene.org" | ||
}, | ||
{ | ||
"url": "*://www.sparkui.org", | ||
"role": "sparkui.org" | ||
}, | ||
{ | ||
"url": "*://www.sparkui.org:*", | ||
"role": "sparkui.org" | ||
}, | ||
{ | ||
"url": "*://sparkui.org", | ||
"role": "sparkui.org" | ||
}, | ||
{ | ||
"url": "*://sparkui.org:*", | ||
"role": "sparkui.org" | ||
}, | ||
{ | ||
"url": "*://xre2-apps.cvs-a.ula.comcast.net", | ||
"role": "pxscene-samples" | ||
}, | ||
{ | ||
"url": "*://xre2-apps.cvs-a.ula.comcast.net:*", | ||
"role": "pxscene-samples" | ||
}, | ||
{ | ||
"url": "*://px-apps.sys.comcast.net", | ||
"role": "pxscene-samples" | ||
}, | ||
{ | ||
"url": "*://px-apps.sys.comcast.net:*", | ||
"role": "pxscene-samples" | ||
}, | ||
{ | ||
"url": "*://*.xreapps.net", | ||
"role": "xreapps.net" | ||
}, | ||
{ | ||
"url": "*://tvxcts-c5-c00001-b.ch.tvx.comcast.com", | ||
"role": "cts" | ||
}, | ||
{ | ||
"url": "*://metrological.com", | ||
"role": "metrological" | ||
}, | ||
{ | ||
"url": "*", | ||
"role": "default" | ||
} | ||
], | ||
"roles": { | ||
"default" : { | ||
"thunder": { | ||
"block" : [ | ||
"*" | ||
] | ||
} | ||
}, | ||
"xreapps.net": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
"DeviceInfo" | ||
] | ||
} | ||
}, | ||
"local": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
] | ||
} | ||
}, | ||
"comcast": { | ||
"thunder": { | ||
"allow": [ | ||
"DeviceInfo" | ||
], | ||
"block" : [ | ||
] | ||
} | ||
}, | ||
"metrological": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
] | ||
} | ||
}, | ||
"pxscene.org": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
] | ||
} | ||
}, | ||
"pxscene-samples": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
] | ||
} | ||
}, | ||
"cts": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
"DeviceInfo" | ||
] | ||
} | ||
}, | ||
"sparkui.org": { | ||
"thunder": { | ||
"allow": [ | ||
"*" | ||
], | ||
"block" : [ | ||
"DeviceInfo" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "plugin.schema.json", | ||
"info": { | ||
"title": "Trace Control Plugin", | ||
"callsign": "TraceControl", | ||
"locator": "libWPEFrameworkTraceControl.so", | ||
"status": "production", | ||
"description": "The Trace Control plugin provides ability to disable/enable trace output an set its verbosity level.", | ||
"version": "1.0" | ||
}, | ||
"interface": { | ||
"$ref": "{interfacedir}/TraceControl.json#" | ||
} | ||
} |
Oops, something went wrong.