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