Last modified by Helena on 2025/09/10 11:19

From version 2.16
edited by Helena
on 2025/05/21 15:11
Change comment: There is no comment for this version
To version 3.1
edited by Helena
on 2025/05/21 15:14
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1248,15 +1248,12 @@
1248 1248  
1249 1249  A user can submit a subscription in the registry that defines which events are of interest, and either an email and/or an HTTP address to which a notification of qualifying events will be delivered. The subscription will be identified in the registry by a URN which is returned to the user when the subscription is created. If the user wants to delete the subscription at a later point, the subscription URN is used as identification. Subscriptions have a validity period expressed as a date range (startDate, endDate) and the registry may delete any expired subscriptions, and will notify the subscriber on expiry.
1250 1250  
1251 -When a registry/repository artefact is modified, any subscriptions which are observing the object are activated, and either an email or HTTP POST is instigated to report details of the changes to the user specified in the subscription. This is called a
1251 +When a registry/repository artefact is modified, any subscriptions which are observing the object are activated, and either an email or HTTP POST is instigated to report details of the changes to the user specified in the subscription. This is called a “notification”.
1252 1252  
1253 -notification”.
1253 +=== 7.5.1Subscription Logical Class Diagram ===
1254 1254  
1255 - 7.5.1Subscription Logical Class Diagram
1255 +[[image:1747829554603-150.png]]
1256 1256  
1257 -
1258 -[[image:1747824123028-257.png]]
1259 -
1260 1260  **Figure 19: Logical Class Diagram of the Subscription**
1261 1261  
1262 1262  === 7.5.2 Subscription Information ===
... ... @@ -1263,73 +1263,58 @@
1263 1263  
1264 1264  Regardless of the type of registry/repository events being observed, a subscription always contains:
1265 1265  
1266 -~1. A set of URIs describing the end-points to which notifications must be sent if the subscription is activated. The URIs can be either mailto~: or http: protocol. In the former case an email notification is sent; in the latter an HTTP POST notification is sent.
1263 +1. A set of URIs describing the end-points to which notifications must be sent if the subscription is activated. The URIs can be either mailto~: or http: protocol. In the former case an email notification is sent; in the latter an HTTP POST notification is sent.
1264 +1. A user-defined identifier which is returned in the response to the subscription request. This helps with asynchronous processing and is NOT stored in the Registry.
1265 +1. A validity period which defines both when the subscription becomes active and expires. The subscriber may be sent a notification on expiration of the subscription.
1266 +1. A selector which specifies which type of events are of interest. The set of event types is:
1267 1267  
1268 -2. A user-defined identifier which is returned in the response to the subscription request. This helps with asynchronous processing and is NOT stored in the Registry.
1268 +|(% style="width:327px" %)**Event Type**|(% style="width:1545px" %)**Comment**
1269 +|(% style="width:327px" %)STRUCTURAL_REPOSITORY_EVENTS|(% style="width:1545px" %)Life-cycle changes to Maintainable Artefacts in the structural metadata repository.
1270 +|(% style="width:327px" %)DATA_REGISTRATION_EVENTS|(% style="width:1545px" %)Whenever a published dataset is registered. This can be either a SDMXML data file or an SDMX conformant database.
1271 +|(% style="width:327px" %)METADATA_REGISTRATION_EVENTS|(% style="width:1545px" %)Whenever a published metadataset is registered. This can be either a SDMXML reference metadata file or an SDMX conformant database.
1272 +|(% style="width:327px" %)ALL_EVENTS|(% style="width:1545px" %)All events of the specified EventType
1269 1269  
1270 -3. A validity period which defines both when the subscription becomes active and expires. The subscriber may be sent a notification on expiration of the subscription.
1271 -
1272 -4. A selector which specifies which type of events are of interest. The set of event types is:
1273 -
1274 -|**Event Type**|**Comment**
1275 -|STRUCTURAL_REPOSITORY_EVENTS|Life-cycle changes to Maintainable Artefacts in the structural metadata repository.
1276 -|DATA_REGISTRATION_EVENTS|Whenever a published dataset is registered. This can be either a SDMXML data file or an SDMX conformant database.
1277 -|METADATA_REGISTRATION_EVENTS|Whenever a published metadataset is registered. This can be either a SDMXML reference metadata file or an SDMX conformant database.
1278 -|ALL_EVENTS|All events of the specified EventType
1279 -
1280 1280  === 7.5.3 Wildcard Facility ===
1281 1281  
1282 1282  Subscription notification supports wildcarded identifier components URNs, which are identiiers which have some or all of their component parts replaced by the wildcard character `%`. Identifier components comprise:
1283 1283  
1284 - agencyID
1278 +* agencyID
1279 +* id
1280 +* version
1285 1285  
1286 - id
1287 -
1288 - version
1289 -
1290 1290  Examples of wildcarded identifier components for an identified object type of Codelist are shown below.
1291 1291  
1292 -AgencyID = %
1293 -
1284 +//AgencyID = %
1294 1294  Id = %
1286 +Version = %//
1295 1295  
1296 -Version = %
1297 -
1298 1298  This subscribes to all Codelists of all versions for all agencies.
1299 1299  
1300 -AgencyID = AGENCY1
1301 -
1290 +//AgencyID = AGENCY1
1302 1302  Id = CODELIST1
1292 +Version = %//
1303 1303  
1304 -Version = %
1305 -
1306 1306  This subscribes to all versions of Codelist CODELIST1 maintained by the agency
1307 1307  
1308 -AGENCY1
1309 -
1296 +//AGENCY1
1310 1310  AgencyID = AGENCY1
1311 -
1312 1312  Id = %
1299 +Version = %//
1313 1313  
1314 -Version = %
1315 -
1316 1316  This subscribes to all versions of all Codelist objects maintained by the agency
1317 1317  
1318 -AGENCY1
1319 -
1303 +//AGENCY1
1320 1320  AgencyID = %
1321 -
1322 1322  Id = CODELIST1
1306 +Version = %//
1323 1323  
1324 -Version = %
1325 -
1326 1326  This subscribes to all versions of Codelist CODELIST1 maintained by the agency
1327 1327  
1328 -AGENCY1
1310 +//AGENCY1//
1329 1329  
1330 1330  Note that if the subscription is to the latest version then this can be achieved by the * character
1331 1331  
1332 -i.e. Version = *
1314 +//i.e. Version = *//
1333 1333  
1334 1334  Note that a subscription using the URN mechanism cannot use wildcard characters.
1335 1335  
... ... @@ -1341,16 +1341,15 @@
1341 1341  
1342 1342  Whenever a dataset or metadata-set is registered a registration event is created. A subscription may be observing all data or metadata registrations, or it may focus on specific registrations as shown in the table below:
1343 1343  
1326 +|(% style="width:405px" %)**Selector**|(% style="width:1467px" %)**Comment**
1327 +|(% style="width:405px" %)DataProvider|(% style="width:1467px" %)Any datasets or metadata sets registered by the specified data provider will activate the notification.
1328 +|(% style="width:405px" %)ProvisionAgreement|(% style="width:1467px" %)Any datasets or metadata sets registered for the provision agreement will activate the notification.
1329 +|(% style="width:405px" %)Dataflow (&Metadataflow)|(% style="width:1467px" %)Any datasets or metadata sets registered for the specified dataflow (or metadataflow) will activate the notification.
1330 +|(% style="width:405px" %)DataStructureDefinition & MetadataStructureDefinition|(% style="width:1467px" %)Any datasets or metadata sets registered for those dataflows (or metadataflows) that are based on the specified Data Structure Definition will
1331 +|(% style="width:405px" %)**Selector**|(% style="width:1467px" %)**Comment**
1332 +|(% style="width:405px" %) |(% style="width:1467px" %)activate the notification.
1333 +|(% style="width:405px" %)Category|(% style="width:1467px" %)Any datasets or metadata sets registered for those dataflows, metadataflows, provision agreements that are categorised by the category.
1344 1344  
1345 -|**Selector**|**Comment**
1346 -|DataProvider|Any datasets or metadata sets registered by the specified data provider will activate the notification.
1347 -|ProvisionAgreement|Any datasets or metadata sets registered for the provision agreement will activate the notification.
1348 -|Dataflow (&Metadataflow)|Any datasets or metadata sets registered for the specified dataflow (or metadataflow) will activate the notification.
1349 -|DataStructureDefinition & MetadataStructureDefinition|Any datasets or metadata sets registered for those dataflows (or metadataflows) that are based on the specified Data Structure Definition will
1350 -|**Selector**|**Comment**
1351 -| |activate the notification.
1352 -|Category|Any datasets or metadata sets registered for those dataflows, metadataflows, provision agreements that are categorised by the category.
1353 -
1354 1354  The event will also capture the semantic of the registration: deletion or replacement of an existing registration or a new registration.
1355 1355  
1356 1356  == 7.6 Notification ==
... ... @@ -1357,8 +1357,10 @@
1357 1357  
1358 1358  === 7.6.1 Logical Class Diagram ===
1359 1359  
1341 +[[image:1747829675568-610.png]]
1360 1360  
1361 -==== Figure 20: Logical Class Diagram of the Notification ====
1343 +(% class="wikigeneratedid" id="HFigure20:LogicalClassDiagramoftheNotification" %)
1344 +**Figure 20: Logical Class Diagram of the Notification**
1362 1362  
1363 1363  A notification is an XML document that is sent to a user via email or http POST whenever a subscription is activated. It is an asynchronous one-way message.
1364 1364  
... ... @@ -1378,5 +1378,3 @@
1378 1378  === 7.6.3 Registration Event Component ===
1379 1379  
1380 1380  The notification will contain the Registration.
1381 -
1382 -
1747829554603-150.png
Author
... ... @@ -1,0 +1,1 @@
1 +xwiki:XWiki.helena
Size
... ... @@ -1,0 +1,1 @@
1 +99.1 KB
Content
1747829675568-610.png
Author
... ... @@ -1,0 +1,1 @@
1 +xwiki:XWiki.helena
Size
... ... @@ -1,0 +1,1 @@
1 +31.1 KB
Content