Codota Logo
CatalogSchemaTableName.toString
Code IndexAdd Codota to your IDE (free)

How to use
toString
method
in
io.prestosql.spi.connector.CatalogSchemaTableName

Best Java code snippets using io.prestosql.spi.connector.CatalogSchemaTableName.toString (Showing top 16 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: prestosql/presto

/**
 * Check if identity is allowed to rename the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanRenameTable(Identity identity, CatalogSchemaTableName table, CatalogSchemaTableName newTable)
{
  denyRenameTable(table.toString(), newTable.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to add columns to the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanAddColumn(Identity identity, CatalogSchemaTableName table)
{
  denyAddColumn(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to select from the specified columns in a relation.  The column set can be empty.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanSelectFromColumns(Identity identity, CatalogSchemaTableName table, Set<String> columns)
{
  denySelectColumns(table.toString(), columns);
}
origin: prestosql/presto

/**
 * Check if identity is allowed to drop the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanDropTable(Identity identity, CatalogSchemaTableName table)
{
  denyDropTable(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to create a view that selects from the specified columns in a relation.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanCreateViewWithSelectFromColumns(Identity identity, CatalogSchemaTableName table, Set<String> columns)
{
  denyCreateViewWithSelect(table.toString(), identity);
}
origin: prestosql/presto

/**
 * Check if identity is allowed to create the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanCreateTable(Identity identity, CatalogSchemaTableName table)
{
  denyCreateTable(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to insert into the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanInsertIntoTable(Identity identity, CatalogSchemaTableName table)
{
  denyInsertTable(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to drop the specified view in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanDropView(Identity identity, CatalogSchemaTableName view)
{
  denyDropView(view.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to rename a column in the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanRenameColumn(Identity identity, CatalogSchemaTableName table)
{
  denyRenameColumn(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to drop columns from the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanDropColumn(Identity identity, CatalogSchemaTableName table)
{
  denyDropColumn(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to delete from the specified table in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanDeleteFromTable(Identity identity, CatalogSchemaTableName table)
{
  denyDeleteTable(table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to create the specified view in a catalog.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanCreateView(Identity identity, CatalogSchemaTableName view)
{
  denyCreateView(view.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to grant the specified privilege to the grantee on the specified table.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanGrantTablePrivilege(Identity identity, Privilege privilege, CatalogSchemaTableName table, PrestoPrincipal grantee, boolean withGrantOption)
{
  denyGrantTablePrivilege(privilege.toString(), table.toString());
}
origin: prestosql/presto

/**
 * Check if identity is allowed to revoke the specified privilege on the specified table from the revokee.
 *
 * @throws AccessDeniedException if not allowed
 */
default void checkCanRevokeTablePrivilege(Identity identity, Privilege privilege, CatalogSchemaTableName table, PrestoPrincipal revokee, boolean grantOptionFor)
{
  denyRevokeTablePrivilege(privilege.toString(), table.toString());
}
origin: io.prestosql/presto-main

@Override
public void checkCanSelectFromColumns(Identity identity, CatalogSchemaTableName table, Set<String> columns)
{
  if (table.getCatalogName().equals("secured_catalog")) {
    denySelectTable(table.toString());
  }
}
origin: prestosql/presto

@Override
public void checkCanSelectFromColumns(Identity identity, CatalogSchemaTableName table, Set<String> columns)
{
  if (table.getCatalogName().equals("secured_catalog")) {
    denySelectTable(table.toString());
  }
}
io.prestosql.spi.connectorCatalogSchemaTableNametoString

Popular methods of CatalogSchemaTableName

  • <init>
  • getCatalogName

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now