Default Claims
The Ambient Data Framework automatically adds a number of Claims to the Claim Store.
In this table, 'Claim scope' refers to the moment when the Claim is removed. If the scope is 'request', the Claim is removed when the request ends; if 'session', it is removed when the session ends.
| Claim name | Claim description | Claim scope |
|---|---|---|
DEFAULT_COOKIE_CLAIM | A Boolean that, if set to true, generates cookies for Web site visitors. | Request |
REQUEST_COOKIES | The request cookies as a Map Map<String, String> (read-only) | Request |
REQUEST_FULL_URL | The full URL of the current request as a string (read-only) | Request |
REQUEST_HEADERS | The headers of the current request as a Map<String, String[]> (read-only) | Request |
REQUEST_PARAMETERS | The parameters of the current request as a Map<String, String[]> (read-only) | Request |
REQUEST_URI | The URI of the current request as a string (read-only) | Request |
RESPONSE_HEADERS | The headers of the current response as a Map<String, String> (read-only) | Request |
SERVER_VARIABLES | The server variables of the current request as a Map<String, String> (read-only) | Request |
SESSION_ATTRIBUTES | The attributes of the current session as a Map<String, Object> (read-only) | Request |
SESSION_ID | The ID of the current session as a string (read-only). | Session |
TRACKING_ID | The tracking ID as a string (read-only). | Session |