@Deprecated public interface ConnectorAccessControl
Modifier and Type | Method and Description |
---|---|
void |
checkCanAddColumn(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to add columns to the specified table in this catalog.
|
void |
checkCanCreateTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to create the specified table in this catalog.
|
void |
checkCanCreateView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to create the specified view in this catalog.
|
void |
checkCanCreateViewWithSelectFromTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to create a view that selects from the specified table in this catalog.
|
void |
checkCanCreateViewWithSelectFromView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to create a view that selects from the specified view in this catalog.
|
void |
checkCanDeleteFromTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to delete from the specified table in this catalog.
|
void |
checkCanDropTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to drop the specified table in this catalog.
|
void |
checkCanDropView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to drop the specified view in this catalog.
|
void |
checkCanGrantTablePrivilege(Identity identity,
Privilege privilege,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to grant to any other user the specified privilege on the specified table.
|
void |
checkCanInsertIntoTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to insert into the specified table in this catalog.
|
void |
checkCanRenameColumn(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to rename a column in the specified table in this catalog.
|
void |
checkCanRenameTable(Identity identity,
SchemaTableName tableName,
SchemaTableName newTableName)
Deprecated.
Check if identity is allowed to rename the specified table in this catalog.
|
void |
checkCanSelectFromTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to select from the specified table in this catalog.
|
void |
checkCanSelectFromView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to select from the specified view in this catalog.
|
void |
checkCanSetCatalogSessionProperty(Identity identity,
String propertyName)
Deprecated.
Check if identity is allowed to set the specified property in this catalog.
|
void checkCanCreateTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanDropTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanRenameTable(Identity identity, SchemaTableName tableName, SchemaTableName newTableName)
AccessDeniedException
- if not allowedvoid checkCanAddColumn(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanRenameColumn(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanSelectFromTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanInsertIntoTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanDeleteFromTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanCreateView(Identity identity, SchemaTableName viewName)
AccessDeniedException
- if not allowedvoid checkCanDropView(Identity identity, SchemaTableName viewName)
AccessDeniedException
- if not allowedvoid checkCanSelectFromView(Identity identity, SchemaTableName viewName)
AccessDeniedException
- if not allowedvoid checkCanCreateViewWithSelectFromTable(Identity identity, SchemaTableName tableName)
AccessDeniedException
- if not allowedvoid checkCanCreateViewWithSelectFromView(Identity identity, SchemaTableName viewName)
AccessDeniedException
- if not allowedvoid checkCanSetCatalogSessionProperty(Identity identity, String propertyName)
AccessDeniedException
- if not allowedvoid checkCanGrantTablePrivilege(Identity identity, Privilege privilege, SchemaTableName tableName)
AccessDeniedException
- if not allowedCopyright © 2012-2016. All Rights Reserved.