| Package | Description |
|---|---|
| com.facebook.presto.spi | |
| com.facebook.presto.spi.connector | |
| com.facebook.presto.spi.security |
| Modifier and Type | Method and Description |
|---|---|
Identity |
ConnectorSession.getIdentity() |
| Modifier and Type | Method and Description |
|---|---|
void |
ConnectorAccessControl.checkCanAddColumn(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to add columns to the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to create the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateView(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName viewName)
Check if identity is allowed to create the specified view in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateViewWithSelectFromTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to create a view that selects from the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateViewWithSelectFromView(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName viewName)
Check if identity is allowed to create a view that selects from the specified view in this catalog.
|
void |
ConnectorAccessControl.checkCanDeleteFromTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to delete from the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanDropTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to drop the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanDropView(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName viewName)
Check if identity is allowed to drop the specified view in this catalog.
|
void |
ConnectorAccessControl.checkCanGrantTablePrivilege(Identity identity,
Privilege privilege,
SchemaTableName tableName)
Check if identity is allowed to grant to any other user the specified privilege on the specified table.
|
void |
ConnectorAccessControl.checkCanInsertIntoTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to insert into the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanRenameColumn(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to rename a column in the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanRenameTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName,
SchemaTableName newTableName)
Check if identity is allowed to rename the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanSelectFromTable(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName tableName)
Check if identity is allowed to select from the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanSelectFromView(ConnectorTransactionHandle transactionHandle,
Identity identity,
SchemaTableName viewName)
Check if identity is allowed to select from the specified view in this catalog.
|
void |
ConnectorAccessControl.checkCanSetCatalogSessionProperty(Identity identity,
String propertyName)
Check if identity is allowed to set the specified property in this catalog.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ConnectorAccessControl.checkCanAddColumn(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to add columns to the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to create the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanCreateView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to create the specified view in this catalog.
|
void |
ConnectorAccessControl.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 |
ConnectorAccessControl.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 |
ConnectorAccessControl.checkCanDeleteFromTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to delete from the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanDropTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to drop the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanDropView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to drop the specified view in this catalog.
|
void |
ConnectorAccessControl.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 |
ConnectorAccessControl.checkCanInsertIntoTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to insert into the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanRenameColumn(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to rename a column in the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanRenameTable(Identity identity,
SchemaTableName tableName,
SchemaTableName newTableName)
Deprecated.
Check if identity is allowed to rename the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanSelectFromTable(Identity identity,
SchemaTableName tableName)
Deprecated.
Check if identity is allowed to select from the specified table in this catalog.
|
void |
ConnectorAccessControl.checkCanSelectFromView(Identity identity,
SchemaTableName viewName)
Deprecated.
Check if identity is allowed to select from the specified view in this catalog.
|
void |
ConnectorAccessControl.checkCanSetCatalogSessionProperty(Identity identity,
String propertyName)
Deprecated.
Check if identity is allowed to set the specified property in this catalog.
|
void |
SystemAccessControl.checkCanSetSystemSessionProperty(Identity identity,
String propertyName)
Check if identity is allowed to set the specified system property.
|
Copyright © 2012-2016. All Rights Reserved.