protected final Logger logger = LoggerFactory.getLogger(this.getClass());
private final static boolean EXCLUDE_AUTHORITIES = false;
+ private final static boolean INCLUDE_AUTHORITIES = true;
@Override
public String getServiceName(){
// We need to get all the procedures, authorities, and objects.
ArrayList<String> groupsList = null;
if("common".equalsIgnoreCase(groupname)) {
- groupsList = ServiceBindingUtils.getCommonServiceTypes(false); // CSPACE-5359: Excluding Authority type to stay backward compat with v2.4
+ groupsList = ServiceBindingUtils.getCommonServiceTypes(EXCLUDE_AUTHORITIES); // CSPACE-5359: Excluding Authority type to stay backward compat with v2.4
} else {
groupsList = new ArrayList<String>();
groupsList.add(groupname);
createDocumentHandler(ctx);
ArrayList<String> groupsList = null;
if("common".equalsIgnoreCase(serviceGroupName)) {
- groupsList = ServiceBindingUtils.getCommonServiceTypes(); //CSPACE-5359: Exclude authorities to remain backward compat with v2.4
+ groupsList = ServiceBindingUtils.getCommonServiceTypes(EXCLUDE_AUTHORITIES); //CSPACE-5359: Exclude authorities to remain backward compat with v2.4
} else {
groupsList = new ArrayList<String>();
groupsList.add(serviceGroupName);