added method getMapAccessURLToCatalogue

This commit is contained in:
Francesco Mangiacrapa 2024-05-08 11:50:11 +02:00
parent 448ef5d5cc
commit 2a983e0017
1 changed files with 5 additions and 0 deletions

View File

@ -94,6 +94,7 @@ public class DataCatalogueImpl implements DataCatalogue {
private String CONTEXT;
private Map<String, String> extendRoleInOrganization;
public Map<ACCESS_LEVEL_TO_CATALOGUE_PORTLET, String> mapAccessURLToCatalogue;
private static final String CATALOGUE_TAB_ENDING_URL = "/catalogue";
// gCat client
private GCatCaller gCatCaller;
@ -2131,5 +2132,9 @@ public class DataCatalogueImpl implements DataCatalogue {
}
}
public Map<ACCESS_LEVEL_TO_CATALOGUE_PORTLET, String> getMapAccessURLToCatalogue() {
return mapAccessURLToCatalogue;
}
}