| Package | Description |
|---|---|
| org.neo4j.server.rest.repr | |
| org.neo4j.server.security.auth |
| Constructor and Description |
|---|
AuthorizationRepresentation(User user) |
| Modifier and Type | Method and Description |
|---|---|
User |
User.Builder.build() |
User |
UserRepository.findByName(String name) |
User |
FileUserRepository.findByName(String name) |
User |
AuthManager.getUser(String username) |
User |
AuthManager.newUser(String username,
String initialPassword,
boolean requirePasswordChange) |
User |
AuthManager.setPassword(String username,
String password) |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
UserSerialization.deserializeUsers(byte[] bytes) |
| Modifier and Type | Method and Description |
|---|---|
AuthenticationResult |
AuthenticationStrategy.authenticate(User user,
String password)
Verify a user by password
|
AuthenticationResult |
RateLimitedAuthenticationStrategy.authenticate(User user,
String password) |
void |
UserRepository.create(User user)
Create a user, given that the users token is unique.
|
void |
FileUserRepository.create(User user) |
boolean |
UserRepository.delete(User user)
Deletes a user.
|
boolean |
FileUserRepository.delete(User user) |
void |
UserRepository.update(User existingUser,
User updatedUser)
Update a user, given that the users token is unique.
|
void |
FileUserRepository.update(User existingUser,
User updatedUser) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
UserSerialization.serialize(Collection<User> users) |
| Constructor and Description |
|---|
User.Builder(User base) |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.