Interface SecurityConfiguration

    • Method Detail

      • getName

        @NotNull
        @NotNull java.lang.String getName()
        Returns the name of this security configuration.
        Returns:
        The name of this configuration.
      • getParameters

        @NotNull
        @NotNull ConfigurationParameters getParameters()
        Returns the configuration parameters associated with this security configuration instance. If no parameters are present ConfigurationParameters.EMPTY should be returned.
        Returns:
        The configuration parameters.
      • getWorkspaceInitializer

        @NotNull
        @NotNull WorkspaceInitializer getWorkspaceInitializer()
        Returns a workspace initializer for this security configuration. If this configuration doesn't require any specific workspace initialization WorkspaceInitializer.DEFAULT should be returned.
        Returns:
        An instance of WorkspaceInitializer.
      • getRepositoryInitializer

        @NotNull
        @NotNull RepositoryInitializer getRepositoryInitializer()
        Returns a repository initializer for this security configuration. If this configuration doesn't require any specific repository initialization RepositoryInitializer.DEFAULT should be returned.
        Returns:
        An instance of RepositoryInitializer.
      • getCommitHooks

        @NotNull
        @NotNull java.util.List<? extends CommitHook> getCommitHooks​(@NotNull
                                                                     @NotNull java.lang.String workspaceName)
        Returns the list of commit hooks that need to be executed for the specified workspace name.
        Parameters:
        workspaceName - The name of the workspace.
        Returns:
        A list of commit hooks.
      • getValidators

        @NotNull
        @NotNull java.util.List<? extends ValidatorProvider> getValidators​(@NotNull
                                                                           @NotNull java.lang.String workspaceName,
                                                                           @NotNull
                                                                           @NotNull java.util.Set<java.security.Principal> principals,
                                                                           @NotNull
                                                                           @NotNull MoveTracker moveTracker)
        Returns the list of validators that need to be executed for the specified workspace name.
        Parameters:
        workspaceName - The name of the workspace.
        principals - The set of principals associated with the subject that is committing modifications.
        moveTracker - The move tracker associated with the commit.
        Returns:
        A list of validators.
      • getProtectedItemImporters

        @NotNull
        @NotNull java.util.List<ProtectedItemImporter> getProtectedItemImporters()
        Returns:
        The list of protected item importers defined by this configuration.
      • getContext

        @NotNull
        @NotNull Context getContext()
        Returns:
        The context defined by this configuration.
      • getMonitors

        @NotNull
        default @NotNull java.lang.Iterable<Monitor<?>> getMonitors​(@NotNull
                                                                    @NotNull StatisticsProvider statisticsProvider)