protected Integer getTabId(HttpServletRequest request)
{
String tabName = extractTabName(request);
if (StringUtils.isNotEmpty(tabName))
{
TabResearcherPage tab = applicationService.getTabByShortName(
TabResearcherPage.class, tabName);
if (tab != null)
return tab.getId();
}
return null;
}