
BBjThinClient::setUserProperty
Description
In BBj 11.0 and higher, this method stores a key/value pair in a specified client-side property group.

Syntax
Return Value |
Method |
---|---|
void |
setUserProperty(long group, string samesite, string key, string value) |
void |
setUserProperty(long group, string key, string value) |
void |
setUserProperty(string key, string value) |
Parameters
Variable |
Description |
---|---|
group |
|
samesite |
|
key |
Specifies the key to be saved on the client. |
value |
Specifies the value to be saved on the client. |
Return Value
None.
Remarks
In BUI, USER_PROPERTIES_COOKIES maps to browser cookies with a 30-day expiration, USER_PROPERTIES_STORAGE maps to browser local storage, and USER_PROPERTIES_SESSION maps to browser session storage. Any other group value is treated as a cookie with a specified expiration timestamp (e.g. System.currentTimeMillis()+24*60*60*1000*7 is exactly 7 days from now).
In GUI, the three groups map to nodes in a Preferences tree, which doesn't allow keys or values to include any $00$ characters.
If no group is specified, the default value is taken from STBL("!USER_PROPERTIES").
In BBj 20.0 and higher, the samesite value ( "Lax", "None", or "Strict") can be specified to control the set of domains that can read a given cookie. For more information, see Google's notes for Chrome 80+. If no samesite value is specified, the default value is taken from STBL("!SAME_SITE") . The samesite value is only meaningful in BUI.
When a BUI or DWC application creates a browser cookie, the cookie path attribute defaults to window.location.pathname. Some applications might want more control over the path attribute. In BBj 22 and higher, STBL("!COOKIE_PATH") can be used to specify the path value for any cookies created with setUserProperty.
Example 1
tc! = bbjapi().getThinClient() tc!.setUserProperty("key","value") print tc!.getUserProperty("key") |
Example 2
|
See Also
BBjThinClient::getUserProperty
BBjThinClient::getUserProperties
BBjThinClient::setUserProperties
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.