From 833286342ef300d5f04135ec182a63e7908d91b8 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 27 Jun 2024 21:10:30 +0200 Subject: [PATCH] Update extensions/remote-udp/README.md --- extensions/remote-udp/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/extensions/remote-udp/README.md b/extensions/remote-udp/README.md index ae5915ed..af0d9f70 100644 --- a/extensions/remote-udp/README.md +++ b/extensions/remote-udp/README.md @@ -22,10 +22,12 @@ This makes it possible for this extension to add additional allowed values to th This extension extends the `namespace` property of process graph nodes so that it accepts **absolute** URL with the protocols `https` (**recommended**) and `http` (discouraged). The URLs specified MUST either return -1. a single process (compatible to the endpoint `GET /process_graphs/{process_graph_id}`) -2. a list of processes (compatible to the endpoint `GET /process_graphs`) - -If a URL is provided for the `namespace` property, the `id` property of the process graph node MUST be set to the `id` of the process. +1. a single process (compatible to the endpoint `GET /process_graphs/{process_graph_id}`). + In this case, the `id` property of the process graph node MUST be equal to the `id` of the process, + otherwise a `ProcessNamespaceInvalid` error is thrown +3. a list of processes (compatible to the endpoint `GET /process_graphs`) + In this case, the `id` property of the process graph node is used to identify the process from the list. + If not found a `ProcessNamespaceInvalid` error is thrown ### Compatibility