Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The Cookie UDR is used to set or read a Cookie.

The following fields are included in the Cookie UDR:

Field

Description

maxAge (int)

This field may contain maximum age of the cookie in seconds.

name (string)

This field contain the name of the cookie.

path (string)

This field may contain a uri path for the cookie to which the client should return the cookie

value (string)

This field may contain the value of the cookie. If left empty meaning the cookie will be deleted.

Script UDR

The Script UDR is used to set extra Scripts on the UI page. It can be referring to a URI where the script can be found or created in this UDR.

The following fields are included in the Script UDR:

Field

Description

attributes (map<string,string>)

This field may contain extra attributes to be added to the script tag.

crossOrigin (string)

This field may contain the value for CORS settings of a script.

integrity (string)

This field may contain the value for integrity attribute.

placement (int)

This field may contain placement of the script tag on the page. Default is LAST_BODY.
Possible values are:
HEADER (1) or LAST_BODY (0)

srcUrl (string)

This field may contain a url to a script.

text (string)

This field may contain a script text.

type (string)

This field may contain MIME type of a script. Typically text/javascript. Two constants are added to help, JAVASCRIPT or ECMASCRIPT.

  • No labels