| Package | Description |
|---|---|
| org.neo4j.server.security.auth |
| Modifier and Type | Method and Description |
|---|---|
User |
User.Builder.build() |
User |
BasicAuthManager.getUser(String username) |
User |
UserManager.getUser(String username) |
User |
AbstractUserRepository.getUserByName(String username) |
User |
UserRepository.getUserByName(String username)
Return the user associated with the given username.
|
User |
BasicAuthManager.newUser(String username,
String initialPassword,
boolean requirePasswordChange) |
User |
UserManager.newUser(String username,
String initialPassword,
boolean requirePasswordChange) |
User |
BasicAuthManager.silentlyGetUser(String username) |
User |
UserManager.silentlyGetUser(String username) |
| Modifier and Type | Method and Description |
|---|---|
ListSnapshot<User> |
UserRepository.getPersistedSnapshot()
Returns a snapshot of the current persisted user repository
|
ListSnapshot<User> |
FileUserRepository.getPersistedSnapshot() |
| Modifier and Type | Method and Description |
|---|---|
org.neo4j.kernel.api.security.AuthenticationResult |
RateLimitedAuthenticationStrategy.authenticate(User user,
String password) |
org.neo4j.kernel.api.security.AuthenticationResult |
AuthenticationStrategy.authenticate(User user,
String password)
Verify a user by password
|
void |
AbstractUserRepository.create(User user) |
void |
UserRepository.create(User user)
Create a user, given that the users token is unique.
|
boolean |
AbstractUserRepository.delete(User user) |
boolean |
UserRepository.delete(User user)
Deletes a user.
|
void |
AbstractUserRepository.update(User existingUser,
User updatedUser) |
void |
UserRepository.update(User existingUser,
User updatedUser)
Update a user, given that the users token is unique.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractUserRepository.setUsers(ListSnapshot<User> usersSnapshot) |
void |
UserRepository.setUsers(ListSnapshot<User> users)
Replaces the users in the repository with the given users.
|
| Constructor and Description |
|---|
BasicSecurityContext(BasicAuthManager authManager,
User user,
org.neo4j.kernel.api.security.AuthenticationResult authenticationResult) |
Builder(User base) |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.