Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

CHANNEL

Panel
bgColorwhite
USER

EVENT

Code Block
system.user (Instance)


This

This system attribute contains

a relation to the active user instance (@User@). The active user contains the following attributes

the current events, which can be set as parameters on an Event. This value is unknown if no event is triggered.


Code Block
system.
user.id (String) system.user.Roles (List) system.user.teams
event (List)
system.user.userName (String) system.user.tenant (String)

These properties are extracted from the UserData object which is automatically filled from the Authentication from the SecurityContext.
Do not modify these properties, because in every newly created session these will be extracted again from the Authentication object in the Spring SecurityContext.

The proper way to get your user information copied to new AquimaSessions is to set the Spring Authentication object through the "org.springframework.security.authentication.AuthenticationProvider"
For implementing an AuthenticationProvider for the SecurityContext see 
Runtime authentication.

Panel
bgColorwhite
Code Block
system.channel (String)

This attribute contains the current device channel. This value is optional.

Panel
bgColorwhite

CURRENTPAGE

Code Block
system.currentpage (String)

This attribute contains the name of the current page.

Panel
bgColorwhite

LANGUAGE

Code Block
system.language (String)

This attribute contains the current language name. This attribute is updated after a language switch.

Panel
bgColorwhite

PAGEVALID

Code Block
system.pagevalid (Boolean)

The value of this boolean is:

  • unknown if a page has never been validated
  • false if the page has been validated and it contains errors (and/or warnings that are shown for the first time)
  • true if the page has been validated and all validations are passed succesfully

The attribute value is recalculated with every refresh.

Info

Current events could be defined on buttons or as special events on specific container types.

System.event valueBehaviour 
_previousSystem flows back to the last visited page. Use this when no 'return' flow is modelled in the flow.
_draftSystem continues it's flow without validating the current page.
_voidSystem flows without submitting the current page. Use this on 'return' flows to allow a user to return to a previous step. Can be combined with the _previous event.
_refreshSystem refreshes the page without flowing. Use this to allow a user to manually refresh the page. 


Some elements automatically set a value in the system.event attribute.

Button Event Type 
Panel
bgColorwhite

EVENT

Code Block
system.event (List)

This attribute contains the current events, which can be set as parameters on an Event. This value is unknown if no event is triggered.

Info

Current events could be defined on buttons or as special events on specific container types.

Furthermore, the type of button also sets these values:

Button Event Type
system.event value
Validate and Continueno value
Continue_draft
Cancel_void


Also:

Button Refreshessystem.event value
True_refresh
Falseno value
Panel
bgColorwhite


ROLES

Code Block
system.roles (List)

This attribute contains a list of the roles of the current user.

Panel
bgColorwhite

TODAY

Code Block
system.today (date)
This attribute contains the current date (yyyy-MM-dd) from the runtime environment.

Back to top