protected SamlSettingsAdminPage()

in saml-authentication-server/src/main/java/jetbrains/buildServer/auth/saml/plugin/SamlSettingsAdminPage.java [23:37]


    protected SamlSettingsAdminPage(@NotNull PagePlaces pagePlaces,
                                    @NotNull PluginDescriptor pluginDescriptor,
                                    @NotNull SamlPluginSettingsStorage settingsStorage,
                                    @NotNull SamlAuthenticationScheme samlAuthenticationScheme,
                                    @NotNull SamlPluginPermissionsManager permissionsManager) {
        super(pagePlaces);
        this.settingsStorage = settingsStorage;
        this.pluginDescriptor = pluginDescriptor;
        this.samlAuthenticationScheme = samlAuthenticationScheme;
        this.permissionsManager = permissionsManager;
        setPluginName(SamlPluginConstants.PLUGIN_NAME);
        setIncludeUrl(pluginDescriptor.getPluginResourcesPath("SamlPluginAdminPage.jsp"));
        setTabTitle("SAML Settings");
        register();
    }