public class UserData extends AbstractContextData<UserData>
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
DEV_USER_ID
Definition
|
static java.lang.String |
HASHED_EMAIL
Definition
|
| Constructor and Description |
|---|
UserData() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
public static final java.lang.String HASHED_EMAIL
EmailHasher class is a helper to hash an email accordingly to the format above.
It can be used like:
UserData userData = new UserData()
.set(UserData.HASHED_EMAIL, EmailHasher.hash("john.doe@gmail.com"));
public static final java.lang.String DEV_USER_ID
public boolean equals(java.lang.Object o)
equals in class AbstractContextData<UserData>