Interface UserStore

  • All Known Implementing Classes:
    ConfigUserStore
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface UserStore
    Store of users for resolving httpauth and digest authentication.
    • Method Detail

      • user

        Optional<UserStore.User> user​(String login)
        Get user based on login.
        Parameters:
        login - login of the user (as obtained from request)
        Returns:
        User information (empty if user is not found)