You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 17, 2020. It is now read-only.
Right now the contextualizers api allows to consume only one resource to produce a contextualization. It should be changed to allow more complex contextualizers and thus be future-proof.
Change in contextualizations generic model :
Actual :
{
// ...
"resource": {
"type": "string"
}
}
Future (alternative 1) :
{
// ...
"resources": { // list of resources of id
"type": "array",
"items": {
"type": "string"
}
}
}
Future (alternative 2)
{
// ...
"resources": { // hashmap of keys/values, in which keys correspond to roles in the contextualizer, and values to resources' uuid
"type": "object"
}
}
Right now the contextualizers api allows to consume only one resource to produce a contextualization. It should be changed to allow more complex contextualizers and thus be future-proof.
Change in contextualizations generic model :
Actual :
Future (alternative 1) :
Future (alternative 2)
Repercussions :