Class AccessDeniedException

All Implemented Interfaces:
Serializable

public class AccessDeniedException extends TrinoException
See Also:
  • Field Details

  • Constructor Details

    • AccessDeniedException

      public AccessDeniedException(String message)
    • AccessDeniedException

      public AccessDeniedException(String message, AccessDeniedException e)
  • Method Details

    • denyImpersonateUser

      public static void denyImpersonateUser(String originalUser, String newUser)
    • denyImpersonateUser

      public static void denyImpersonateUser(String originalUser, String newUser, String extraInfo)
    • denySetUser

      public static void denySetUser(Optional<Principal> principal, String userName)
    • denySetUser

      public static void denySetUser(Optional<Principal> principal, String userName, String extraInfo)
    • denyReadSystemInformationAccess

      public static void denyReadSystemInformationAccess()
    • denyReadSystemInformationAccess

      public static void denyReadSystemInformationAccess(String extraInfo)
    • denyWriteSystemInformationAccess

      public static void denyWriteSystemInformationAccess()
    • denyWriteSystemInformationAccess

      public static void denyWriteSystemInformationAccess(String extraInfo)
    • denyExecuteQuery

      public static void denyExecuteQuery()
    • denyExecuteQuery

      public static void denyExecuteQuery(String extraInfo)
    • denyViewQuery

      public static void denyViewQuery()
    • denyViewQuery

      public static void denyViewQuery(String extraInfo)
    • denyKillQuery

      public static void denyKillQuery()
    • denyKillQuery

      public static void denyKillQuery(String extraInfo)
    • denyCatalogAccess

      public static void denyCatalogAccess(String catalogName)
    • denyCatalogAccess

      public static void denyCatalogAccess(String catalogName, String extraInfo)
    • denyCreateCatalog

      public static void denyCreateCatalog(String catalogName)
    • denyCreateCatalog

      public static void denyCreateCatalog(String catalogName, String extraInfo)
    • denyDropCatalog

      public static void denyDropCatalog(String catalogName)
    • denyDropCatalog

      public static void denyDropCatalog(String catalogName, String extraInfo)
    • denyCreateSchema

      public static void denyCreateSchema(String schemaName)
    • denyCreateSchema

      public static void denyCreateSchema(String schemaName, String extraInfo)
    • denyDropSchema

      public static void denyDropSchema(String schemaName)
    • denyDropSchema

      public static void denyDropSchema(String schemaName, String extraInfo)
    • denyRenameSchema

      public static void denyRenameSchema(String schemaName, String newSchemaName)
    • denyRenameSchema

      public static void denyRenameSchema(String schemaName, String newSchemaName, String extraInfo)
    • denySetSchemaAuthorization

      public static void denySetSchemaAuthorization(String schemaName, TrinoPrincipal principal)
    • denySetSchemaAuthorization

      public static void denySetSchemaAuthorization(String schemaName, TrinoPrincipal principal, String extraInfo)
    • denyShowSchemas

      public static void denyShowSchemas()
    • denyShowSchemas

      public static void denyShowSchemas(String extraInfo)
    • denyShowCreateSchema

      public static void denyShowCreateSchema(String schemaName)
    • denyShowCreateSchema

      public static void denyShowCreateSchema(String schemaName, String extraInfo)
    • denyShowCreateTable

      public static void denyShowCreateTable(String tableName)
    • denyShowCreateTable

      public static void denyShowCreateTable(String tableName, String extraInfo)
    • denyCreateTable

      public static void denyCreateTable(String tableName)
    • denyCreateTable

      public static void denyCreateTable(String tableName, String extraInfo)
    • denyDropTable

      public static void denyDropTable(String tableName)
    • denyDropTable

      public static void denyDropTable(String tableName, String extraInfo)
    • denyRenameTable

      public static void denyRenameTable(String tableName, String newTableName)
    • denyRenameTable

      public static void denyRenameTable(String tableName, String newTableName, String extraInfo)
    • denySetTableProperties

      public static void denySetTableProperties(String tableName)
    • denySetTableProperties

      public static void denySetTableProperties(String tableName, String extraInfo)
    • denyCommentTable

      public static void denyCommentTable(String tableName)
    • denyCommentTable

      public static void denyCommentTable(String tableName, String extraInfo)
    • denyCommentView

      public static void denyCommentView(String viewName)
    • denyCommentView

      public static void denyCommentView(String viewName, String extraInfo)
    • denyCommentColumn

      public static void denyCommentColumn(String tableName)
    • denyCommentColumn

      public static void denyCommentColumn(String tableName, String extraInfo)
    • denyShowTables

      public static void denyShowTables(String schemaName)
    • denyShowTables

      public static void denyShowTables(String schemaName, String extraInfo)
    • denyShowColumns

      public static void denyShowColumns(String tableName)
    • denyShowColumns

      public static void denyShowColumns(String tableName, String extraInfo)
    • denyAddColumn

      public static void denyAddColumn(String tableName)
    • denyAddColumn

      public static void denyAddColumn(String tableName, String extraInfo)
    • denyDropColumn

      public static void denyDropColumn(String tableName)
    • denyDropColumn

      public static void denyDropColumn(String tableName, String extraInfo)
    • denyAlterColumn

      public static void denyAlterColumn(String tableName)
    • denyAlterColumn

      public static void denyAlterColumn(String tableName, String extraInfo)
    • denySetTableAuthorization

      public static void denySetTableAuthorization(String tableName, TrinoPrincipal principal)
    • denySetTableAuthorization

      public static void denySetTableAuthorization(String tableName, TrinoPrincipal principal, String extraInfo)
    • denyRenameColumn

      public static void denyRenameColumn(String tableName)
    • denyRenameColumn

      public static void denyRenameColumn(String tableName, String extraInfo)
    • denySelectTable

      public static void denySelectTable(String tableName)
    • denySelectTable

      public static void denySelectTable(String tableName, String extraInfo)
    • denyInsertTable

      public static void denyInsertTable(String tableName)
    • denyInsertTable

      public static void denyInsertTable(String tableName, String extraInfo)
    • denyDeleteTable

      public static void denyDeleteTable(String tableName)
    • denyDeleteTable

      public static void denyDeleteTable(String tableName, String extraInfo)
    • denyTruncateTable

      public static void denyTruncateTable(String tableName)
    • denyTruncateTable

      public static void denyTruncateTable(String tableName, String extraInfo)
    • denyUpdateTableColumns

      public static void denyUpdateTableColumns(String tableName, Set<String> updatedColumnNames)
    • denyUpdateTableColumns

      public static void denyUpdateTableColumns(String tableName, Set<String> updatedColumnNames, String extraInfo)
    • denyCreateView

      public static void denyCreateView(String viewName)
    • denyCreateView

      public static void denyCreateView(String viewName, String extraInfo)
    • denyCreateViewWithSelect

      public static void denyCreateViewWithSelect(String sourceName, Identity identity)
    • denyCreateViewWithSelect

      public static void denyCreateViewWithSelect(String sourceName, ConnectorIdentity identity)
    • denyCreateViewWithSelect

      public static void denyCreateViewWithSelect(String sourceName, ConnectorIdentity identity, String extraInfo)
    • denyRenameView

      public static void denyRenameView(String viewName, String newViewName)
    • denyRenameView

      public static void denyRenameView(String viewName, String newViewName, String extraInfo)
    • denySetViewAuthorization

      public static void denySetViewAuthorization(String viewName, TrinoPrincipal principal)
    • denySetViewAuthorization

      public static void denySetViewAuthorization(String viewName, TrinoPrincipal principal, String extraInfo)
    • denyDropView

      public static void denyDropView(String viewName)
    • denyDropView

      public static void denyDropView(String viewName, String extraInfo)
    • denyCreateMaterializedView

      public static void denyCreateMaterializedView(String materializedViewName)
    • denyCreateMaterializedView

      public static void denyCreateMaterializedView(String materializedViewName, String extraInfo)
    • denyRefreshMaterializedView

      public static void denyRefreshMaterializedView(String materializedViewName)
    • denyRefreshMaterializedView

      public static void denyRefreshMaterializedView(String materializedViewName, String extraInfo)
    • denySetMaterializedViewProperties

      public static void denySetMaterializedViewProperties(String materializedViewName)
    • denySetMaterializedViewProperties

      public static void denySetMaterializedViewProperties(String materializedViewName, String extraInfo)
    • denyDropMaterializedView

      public static void denyDropMaterializedView(String materializedViewName)
    • denyDropMaterializedView

      public static void denyDropMaterializedView(String materializedViewName, String extraInfo)
    • denyRenameMaterializedView

      public static void denyRenameMaterializedView(String materializedViewName, String newMaterializedViewName)
    • denyRenameMaterializedView

      public static void denyRenameMaterializedView(String materializedViewName, String newMaterializedViewName, String extraInfo)
    • denyGrantSchemaPrivilege

      public static void denyGrantSchemaPrivilege(String privilege, String schemaName)
    • denyGrantSchemaPrivilege

      public static void denyGrantSchemaPrivilege(String privilege, String schemaName, String extraInfo)
    • denyDenySchemaPrivilege

      public static void denyDenySchemaPrivilege(String privilege, String schemaName)
    • denyDenySchemaPrivilege

      public static void denyDenySchemaPrivilege(String privilege, String schemaName, String extraInfo)
    • denyRevokeSchemaPrivilege

      public static void denyRevokeSchemaPrivilege(String privilege, String schemaName)
    • denyRevokeSchemaPrivilege

      public static void denyRevokeSchemaPrivilege(String privilege, String schemaName, String extraInfo)
    • denyGrantTablePrivilege

      public static void denyGrantTablePrivilege(String privilege, String tableName)
    • denyGrantTablePrivilege

      public static void denyGrantTablePrivilege(String privilege, String tableName, String extraInfo)
    • denyDenyTablePrivilege

      public static void denyDenyTablePrivilege(String privilege, String tableName)
    • denyDenyTablePrivilege

      public static void denyDenyTablePrivilege(String privilege, String tableName, String extraInfo)
    • denyRevokeTablePrivilege

      public static void denyRevokeTablePrivilege(String privilege, String tableName)
    • denyRevokeTablePrivilege

      public static void denyRevokeTablePrivilege(String privilege, String tableName, String extraInfo)
    • denyGrantEntityPrivilege

      public static void denyGrantEntityPrivilege(String privilege, EntityKindAndName entity)
    • denyGrantEntityPrivilege

      public static void denyGrantEntityPrivilege(String privilege, EntityKindAndName entity, String extraInfo)
    • denyDenyEntityPrivilege

      public static void denyDenyEntityPrivilege(String privilege, EntityKindAndName entity)
    • denyDenyEntityPrivilege

      public static void denyDenyEntityPrivilege(String privilege, EntityKindAndName entity, String extraInfo)
    • denyRevokeEntityPrivilege

      public static void denyRevokeEntityPrivilege(String privilege, EntityKindAndName entity)
    • denyRevokeEntityPrivilege

      public static void denyRevokeEntityPrivilege(String privilege, EntityKindAndName entity, String extraInfo)
    • denyShowRoles

      public static void denyShowRoles()
    • denyShowCurrentRoles

      public static void denyShowCurrentRoles()
    • denyShowRoleGrants

      public static void denyShowRoleGrants()
    • denySetSystemSessionProperty

      public static void denySetSystemSessionProperty(String propertyName)
    • denySetSystemSessionProperty

      public static void denySetSystemSessionProperty(String propertyName, String extraInfo)
    • denySetCatalogSessionProperty

      public static void denySetCatalogSessionProperty(String catalogName, String propertyName)
    • denySetCatalogSessionProperty

      public static void denySetCatalogSessionProperty(String catalogName, String propertyName, String extraInfo)
    • denySetCatalogSessionProperty

      public static void denySetCatalogSessionProperty(String propertyName)
    • denySelectColumns

      public static void denySelectColumns(String tableName, Collection<String> columnNames)
    • denySelectColumns

      public static void denySelectColumns(String tableName, Collection<String> columnNames, String extraInfo)
    • denyCreateRole

      public static void denyCreateRole(String roleName)
    • denyDropRole

      public static void denyDropRole(String roleName)
    • denyGrantRoles

      public static void denyGrantRoles(Set<String> roles, Set<TrinoPrincipal> grantees)
    • denyRevokeRoles

      public static void denyRevokeRoles(Set<String> roles, Set<TrinoPrincipal> grantees)
    • denySetRole

      public static void denySetRole(String role)
    • denyExecuteProcedure

      public static void denyExecuteProcedure(String procedureName)
    • denyExecuteProcedure

      public static void denyExecuteProcedure(String procedureName, String extraInfo)
    • denyExecuteFunction

      public static void denyExecuteFunction(String functionName)
    • denyExecuteFunction

      public static void denyExecuteFunction(String functionName, FunctionKind functionKind, String extraInfo)
    • denyExecuteTableProcedure

      public static void denyExecuteTableProcedure(String tableName, String procedureName)
    • denyShowFunctions

      public static void denyShowFunctions(String schemaName)
    • denyShowFunctions

      public static void denyShowFunctions(String schemaName, String extraInfo)
    • denyCreateFunction

      public static void denyCreateFunction(String functionName)
    • denyCreateFunction

      public static void denyCreateFunction(String functionName, String extraInfo)
    • denyDropFunction

      public static void denyDropFunction(String functionName)
    • denyDropFunction

      public static void denyDropFunction(String functionName, String extraInfo)
    • denyShowCreateFunction

      public static void denyShowCreateFunction(String functionName)
    • denyShowCreateFunction

      public static void denyShowCreateFunction(String functionName, String extraInfo)