public interface SessionReaderI
This interface provides the necessary context for features that rely on the current user's environment and persistent application settings.
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
get(java.lang.String name)
Retrieves a session-scoped variable by key.
|
java.util.Locale |
getLocale()
Retrieves the current
Locale set for the user's session. |
Benutzer |
getUser()
Returns the currently authenticated user.
|
java.util.Map<java.lang.String,java.lang.Object> |
getVariables()
Returns an unmodifiable view of all currently registered session variables.
|
Benutzer getUser()
Benutzer instance, or nulljava.util.Locale getLocale()
Locale set for the user's session.
This locale is critical for correctly formatting numbers, dates, currency, and handling localized text.
Locale.java.util.Map<java.lang.String,java.lang.Object> getVariables()
These variables represent typically machine- or user-profile-specific, application settings.
java.lang.Object get(java.lang.String name)
name - variable key identifiernull if not foundCopyright © 2000-2026 OAshi S.à r.l. All Rights Reserved.