public class User extends Object
| Constructor and Description |
|---|
User(Email email,
String password,
Map<String,Object> properties)
Constructs a new user with the given email, password, and additional properties.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
Email |
getEmail() |
String |
getPassword() |
Map<String,Object> |
getProperties() |
int |
hashCode() |
String |
toString() |
public User(Email email, String password, Map<String,Object> properties)
email - the user's email. This is the user's primary key.password - the user's hashed (not plaintext) passwordproperties - the map of additional user properties. If null, an empty map will be used.Copyright © 2019. All rights reserved.