implementing service

This commit is contained in:
Luca Frosini 2024-07-01 17:42:59 +02:00
parent fba2195c7e
commit f36f2c1334
1 changed files with 18 additions and 0 deletions

View File

@ -29,6 +29,24 @@ public class ContextManager extends BaseREST {
public static final String CURRENT_CONTEXT_PATH_PART = "CURRENT_CONTEXT";
/**
* This attribute is added to Context as a additional property.
* It contains the access point of the context in the gateway;
*
* {
* ...
* "availableAt" : [
* "https://i-marine.d4science.org/group/alienandinvasivespecies",
* "https://services.d4science.org/group/alienandinvasivespecies"
* ]
* ...
* }
* For non VRE context this field could be null or could have multiple value
* For VRE it is normally one value only (but some exception could exists)
*/
public static final String AVAILABLE_AT_PROPERTY = "availableAt";
public ContextManager() {
super();
}