|
boolean | isEqual (String id) |
|
Object | put (String key, Object value) |
|
◆ getInstance()
static UserPreferences org.turro.elephant.impl.security.UserPreferences.getInstance |
( |
String |
id | ) |
|
|
static |
Definition at line 41 of file UserPreferences.java.
42 File root =
new File(ElephantContext.getRealPath(PREFERENCES_ROOT));
46 File file =
new File(ElephantContext.getRealPath(PREFERENCES_ROOT +
"/" +
id +
".preferences"));
47 UserPreferences up = (UserPreferences) Serializer.deserialize(file);
49 up =
new UserPreferences();
◆ getSystem()
static UserPreferences org.turro.elephant.impl.security.UserPreferences.getSystem |
( |
| ) |
|
|
static |
◆ isEqual()
boolean org.turro.elephant.impl.security.UserPreferences.isEqual |
( |
String |
id | ) |
|
◆ put()
Object org.turro.elephant.impl.security.UserPreferences.put |
( |
String |
key, |
|
|
Object |
value |
|
) |
| |
Definition at line 61 of file UserPreferences.java.
62 Object obj = super.put(key, value);
63 Serializer.serialize(file,
this);
The documentation for this class was generated from the following file: