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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceUserStore.UserRepresentation of a single user.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<UserStore.User>user(String login)Get user based on login.
-
-
-
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)
-
-