scope

The scope property specifies the visibility of a page bean (the Java™ component on the web server that represents the page logic). Set this property explicitly because it affects the way the JSF handler works and how long the values entered into the web page are available.

Use one of the following values from the ScopeKind enumeration:
session
The bean is stored in the HttpSession object. This is the default value.
request
The bean is stored in theHttpServletRequest object.
application
The bean is stored in the servlet context.

Compatibility

Table 1. Support for scope property
Data item JSF handler VGUI record Console UI Text Form Java Text Form COBOL Print Form Java Print Form COBOL
Yes Yes No No No No No No

Feedback