ALTER JAVA
Alter Java source.
Syntax:
ALTER JAVA {SOURCE|CLASS} [schema.]object_name
[RESOLVER (( match_string, schema_name )...)]
{COMPILE|RESOLVE}
ALTER JAVA {SOURCE|CLASS} [schema.]object_name
[RESOLVER (( match_string, schema_name )...)]
AUTHID{CURRENT_USER|DEFINER}
COMPILE and RESOLVE are synonymous - compile the object source code or when applied to a class, resolve referenced names.
AUTHID CURRENT_USER - methods of the class execute with the privileges of the CURRENT_USER.
AUTHID DEFINER - methods of the class execute with the privileges of the user who defined it.
Related Commands:
JAVA - CREATE JAVA
JAVA - DROP JAVA
Related Views:
DBA_JAVA_POLICY USER_JAVA_POLICY