Class SecuritySettingsTab

    • Method Detail

      • isVisible

        public boolean isVisible()
        Description copied from interface: CustomTab
        Return false if the tab should be active (i.e. handle requests) but not visible for some reason
        Specified by:
        isVisible in interface CustomTab
        Overrides:
        isVisible in class SimpleCustomTab
        Returns:
        see above
      • isAvailable

        public boolean isAvailable​(@NotNull
                                   javax.servlet.http.HttpServletRequest request)
        Description copied from interface: PageExtension
        Returns true if this extension is available (should be included on the page) for the specified request. If extension needs to be shown for some pages only, it can obtain original page URL via request attribute called "pageUrl":
        String pageUrl = (String)request.getAttribute("pageUrl");
        Specified by:
        isAvailable in interface ExtensionAvailability
        Specified by:
        isAvailable in interface PageExtension
        Overrides:
        isAvailable in class SimplePageExtension
        Parameters:
        request - HTTP request
        Returns:
        true if extension should be included in the page place