Porting code to redesigned E/R format

This commit is contained in:
Luca Frosini 2023-04-19 11:37:03 +02:00
parent 9c23f9f42a
commit e1284006e7
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ public class AccessPath {
public static final String RAW_QUERY_PARAMETER_DEFAULT_VALUE = "false";
public static final String HIERARCHICAL_MODE_QUERY_PARAMETER = InstancePath.HIERARCHICAL_MODE_QUERY_PARAMETER;
public static final String INCLUDE_CONTEXTS_IN_HEADER_QUERY_PARAMETER = InstancePath.INCLUDE_CONTEXTS_IN_HEADER_QUERY_PARAMETER;
public static final String INCLUDE_CONTEXTS_QUERY_PARAMETER = InstancePath.INCLUDE_CONTEXTS_QUERY_PARAMETER;
/**
* Used only in getRelated() function

View File

@ -11,6 +11,6 @@ public class InstancePath {
public static final String HIERARCHICAL_MODE_QUERY_PARAMETER = "hierarchical";
public static final String INCLUDE_CONTEXTS_IN_HEADER_QUERY_PARAMETER = "includeContextsInHeader";
public static final String INCLUDE_CONTEXTS_QUERY_PARAMETER = "includeContexts";
}