implementing service
This commit is contained in:
parent
fba2195c7e
commit
f36f2c1334
|
@ -29,6 +29,24 @@ public class ContextManager extends BaseREST {
|
||||||
|
|
||||||
public static final String CURRENT_CONTEXT_PATH_PART = "CURRENT_CONTEXT";
|
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() {
|
public ContextManager() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue