Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > PUBLIC_CHECK_AUTH...
PUBLIC_CHECK_AUTHORIZATION Function |
![]() Previous |
![]() Next |
Given the name of a security scheme, this function determines if the current user passes the security check.
Syntax
HTMLDB_UTIL.PUBLIC_CHECK_AUTHORIZATION (
p_security_scheme IN VARCHAR2)
RETURN BOOLEAN;
Parameters
Table: PUBLIC_CHECK_AUTHORIZATION Parameters describes the parameters available in PUBLIC_CHECK_AUTHORIZATION function.
PUBLIC_CHECK_AUTHORIZATION Parameters
| Parameter | Description |
|---|---|
|
|
The name of the security scheme that determines if the user passes the security check |
Example
DECLARE
l_check_security BOOLEAN;
BEGIN
l_check_security := HTMLDB_UTIL.PUBLIC_CHECK_AUTHORIZATION('my_auth_scheme');
END;