GlideSession - Global
-
- UpdatedAug 1, 2024
- 3 minutes to read
- Xanadu
- API reference
The GlideSession API provides methods to find information about the current session.
GlideSession - clearClientData(String paramName)
Clears a session client value previously set with putClientData().
This method is used in a client script to clear data values that were set by a server script using the putClientData() method.
Name | Type | Description |
---|---|---|
paramName | String | Name of the client data to clear. |
Type | Description |
---|---|
void |
Example
Output:
GlideSession - getClientData(String paramName)
Returns a session client value previously set with putClientData().
This method is used in a client script to retrieve data values that were set by a server script that used the putClientData() method.
Name | Type | Description |
---|---|---|
paramName | String | Name of the client data to retrieve. |
Type | Description |
---|---|
String | The client data as a string. |
Example
Output:
Scoped equivalent
To use the getClientData() method in a scoped application, use the corresponding scoped method: getClientData().
GlideSession - getLanguage()
Gets the session's language code.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The session's language code. |
Example
Output:
Scoped equivalent
To use the getLanguage() method in a scoped application, use the corresponding scoped method: getLanguage().
GlideSession - getRoles()
Gets a list of roles for the current user.
The list of roles does not reflect any changes made during the current user session. To get the updated list of roles, the user must log out and log back in.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | A comma separated list of roles. |
Example
Output:
GlideSession - getTimeZoneName()
Gets the name of the session's time zone.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The name of the session's time zone. |
Example
Output:
Scoped equivalent
To use the getTimeZoneName() method in a scoped application, use the corresponding scoped method: getTimeZoneName().
GlideSession - isInteractive()
Determines if the current session is interactive.
An interactive session is one that involves an end-user interacting with a user interface that then retrieves information from a server. An example of this type of session is when a user logs in using the log-in screen or uses a form to query a data store. A non-interactive session is one that only involves programmatic interaction with a server such as a SOAP request to retrieve data.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
Boolean | True if the session is interactive. |
Example
Output:
Scoped equivalent
To use the isInteractive() method in a scoped application, use the corresponding scoped method: isInteractive().
GlideSession - isLoggedIn()
Determines if the current user is currently logged in.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
Boolean | True if the current user is logged in. |
Example
Output:
Scoped equivalent
To use the isLoggedIn() method in a scoped application, use the corresponding scoped method: isLoggedIn().
GlideSession - putClientData(String paramName, String paramValue)
Sets a session client value that can be retrieved with getClientData(). This method is used in a server side script that runs when a form is created.
Name | Type | Description |
---|---|---|
paramName | String | Name of the client parameter to set. |
paramValue | String | Parameter value. |
Type | Description |
---|---|
void |
Example
Output:
Scoped equivalent
To use the putClientData() method in a scoped application, use the corresponding scoped method: putClientData().
On this page
- GlideSession - clearClientData(String paramName)
- GlideSession - getClientData(String paramName)
- GlideSession - getLanguage()
- GlideSession - getRoles()
- GlideSession - getTimeZoneName()
- GlideSession - isInteractive()
- GlideSession - isLoggedIn()
- GlideSession - putClientData(String paramName, String paramValue)