Uses of Class
org.postgresql.pljava.annotation.Function.Trust
-
Packages that use Function.Trust Package Description org.postgresql.pljava The PL/Java API for use in writing database procedures, functions, and types using PL/Java.org.postgresql.pljava.annotation Annotations for use in Java code to generate the SQLJ Deployment Descriptor automatically. -
-
Uses of Function.Trust in org.postgresql.pljava
Methods in org.postgresql.pljava that return Function.Trust Modifier and Type Method Description Function.Trust
PLPrincipal.Sandboxed. trust()
ReturnsSANDBOXED
.abstract Function.Trust
PLPrincipal. trust()
Returns eitherSANDBOXED
orUNSANDBOXED
according to PostgreSQL's catalog entry for the language.Function.Trust
PLPrincipal.Unsandboxed. trust()
ReturnsUNSANDBOXED
. -
Uses of Function.Trust in org.postgresql.pljava.annotation
Methods in org.postgresql.pljava.annotation that return Function.Trust Modifier and Type Method Description Function.Trust
trust()
Whether the function will run in the SANDBOXED ("trusted") version of the language, or requires UNSANDBOXED access and must be defined in the "untrusted" language instance.static Function.Trust
Function.Trust. valueOf(String name)
Returns the enum constant of this type with the specified name.static Function.Trust[]
Function.Trust. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-