Interface SecurityProvider

    • Method Detail

      • supportedConfigKeys

        default Collection<String> supportedConfigKeys()
        Keys expected in configuration. This may be used in integrations that can be fully configured through a file (e.g. integration with web server). This is a configuration of a specific resource access (e.g. GET on /my/resource) and is to be used by this provider to evaluate security.
        Returns:
        name of the configuration key or empty (default)
        See Also:
        EndpointConfig.config(String)
      • supportedCustomObjects

        default Collection<Class<? extends ProviderConfig>> supportedCustomObjects()
        Class of the configuration type. The provider may use a POJO implementing a ProviderConfig to configure it. When configuring security, you user can provide an instance of such a class to configure that provider.
        Returns:
        class of the type or empty (default)
        See Also:
        EndpointConfig.instance(Class)
      • supportedAttributes

        default Collection<String> supportedAttributes()
        A collection of attribute names expected by this provider to override endpoint configuration.
        Returns:
        collection of supported attribute names
        See Also:
        AbacSupport.abacAttribute(String)