The next table lists the system functions in the library j2eeLib.
| Function | Description |
|---|---|
| clearApplicationAttr (key) | Removes the value that is associated with the specified key in application scope storage. |
| clearEGLSessionAttrs() | Removes all values associated with all keys placed in session scope storage. |
| clearRequestAttr (key) | Removes the value that is associated with the specified key in request scope storage. |
| clearSessionAttr (key) | Removes the value that is associated with the specified key in session scope storage. |
| value = getApplicationAttr (key) | Uses a specified key to retrieve a value from application scope storage. |
| getAuthenticationType() | Returns the Java EE authentication method in use for the current web application. |
| getContext() | Returns a context when you are working in a J2EE environment. |
| getRemoteUser() | Returns the user's login ID. |
| getRequestAttr (key, value) value = getRequestAttr (key) |
Uses a specified key to retrieve a value from request scope storage. |
| getSessionAttr (key, value) value = getSessionAttr (key) |
Uses a specified key to retrieve a value from session scope storage. |
| value = getQueryParameter (key) | Uses a specified key to retrieve a value from an AJAX request or other query. |
| isUserInRole(roleName) | Indicates whether the user is included in a specified role. |
| setApplicationAttr (key, value) | Uses the specified key to place the specified value in application scope storage. |
| setRequestAttr (key, value) | Uses the specified key to place the specified value in request scope storage. |
| setSessionAttr (key, value) | Uses the specified key to place the specified value in session scope storage |
| Platform | Issue |
|---|---|
| COBOL generation | None of the j2eeLib functions are supported. |