Uses of Class
org.apache.cassandra.exceptions.UnauthorizedException

Packages that use UnauthorizedException
org.apache.cassandra.auth   
org.apache.cassandra.cql   
org.apache.cassandra.cql3   
org.apache.cassandra.cql3.statements   
org.apache.cassandra.service   
 

Uses of UnauthorizedException in org.apache.cassandra.auth
 

Methods in org.apache.cassandra.auth that throw UnauthorizedException
 void IAuthority2.grant(AuthenticatedUser granter, Permission permission, java.lang.String to, CFName resource, boolean grantOption)
          GRANT ON TO [WITH GRANT OPTION];
 void IAuthorityContainer.grant(AuthenticatedUser granter, Permission permission, java.lang.String to, CFName resource, boolean grantOption)
           
 ResultMessage IAuthority2.listPermissions(java.lang.String username)
          LIST GRANTS FOR ; Not 'SHOW' because it's reserved for CQLsh for commands like 'show cluster'
 ResultMessage IAuthorityContainer.listPermissions(java.lang.String username)
           
 void IAuthority2.revoke(AuthenticatedUser revoker, Permission permission, java.lang.String from, CFName resource)
          REVOKE ON FROM ;
 void IAuthorityContainer.revoke(AuthenticatedUser revoker, Permission permission, java.lang.String from, CFName resource)
           
 

Uses of UnauthorizedException in org.apache.cassandra.cql
 

Methods in org.apache.cassandra.cql that throw UnauthorizedException
 java.util.List<IMutation> BatchStatement.getMutations(java.lang.String keyspace, ThriftClientState clientState, java.util.List<java.nio.ByteBuffer> variables)
           
abstract  java.util.List<IMutation> AbstractModification.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.util.List<java.nio.ByteBuffer> variables)
          Convert statement into a list of mutations to apply on the server
 java.util.List<IMutation> DeleteStatement.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.util.List<java.nio.ByteBuffer> variables)
           
 java.util.List<IMutation> UpdateStatement.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.util.List<java.nio.ByteBuffer> variables)
          Convert statement into a list of mutations to apply on the server
abstract  java.util.List<IMutation> AbstractModification.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.lang.Long timestamp, java.util.List<java.nio.ByteBuffer> variables)
          Convert statement into a list of mutations to apply on the server
 java.util.List<IMutation> DeleteStatement.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.lang.Long timestamp, java.util.List<java.nio.ByteBuffer> variables)
           
 java.util.List<IMutation> UpdateStatement.prepareRowMutations(java.lang.String keyspace, ThriftClientState clientState, java.lang.Long timestamp, java.util.List<java.nio.ByteBuffer> variables)
          Convert statement into a list of mutations to apply on the server
 

Uses of UnauthorizedException in org.apache.cassandra.cql3
 

Methods in org.apache.cassandra.cql3 that throw UnauthorizedException
 void CQLStatement.checkAccess(ClientState state)
          Perform any access verification necessary for the statement.
 

Uses of UnauthorizedException in org.apache.cassandra.cql3.statements
 

Methods in org.apache.cassandra.cql3.statements that throw UnauthorizedException
 void AlterKeyspaceStatement.checkAccess(ClientState state)
           
 void AlterTableStatement.checkAccess(ClientState state)
           
 void BatchStatement.checkAccess(ClientState state)
           
 void CreateColumnFamilyStatement.checkAccess(ClientState state)
           
 void CreateIndexStatement.checkAccess(ClientState state)
           
 void CreateKeyspaceStatement.checkAccess(ClientState state)
           
 void DropColumnFamilyStatement.checkAccess(ClientState state)
           
 void DropIndexStatement.checkAccess(ClientState state)
           
 void DropKeyspaceStatement.checkAccess(ClientState state)
           
 void ModificationStatement.checkAccess(ClientState state)
           
 void SelectStatement.checkAccess(ClientState state)
           
 void TruncateStatement.checkAccess(ClientState state)
           
 ResultMessage GrantStatement.execute(ClientState state, java.util.List<java.nio.ByteBuffer> variables)
           
 ResultMessage ListGrantsStatement.execute(ClientState state, java.util.List<java.nio.ByteBuffer> variables)
           
abstract  ResultMessage PermissionAlteringStatement.execute(ClientState state, java.util.List<java.nio.ByteBuffer> variables)
           
 ResultMessage RevokeStatement.execute(ClientState state, java.util.List<java.nio.ByteBuffer> variables)
           
 ResultMessage PermissionAlteringStatement.execute(ConsistencyLevel cl, QueryState state, java.util.List<java.nio.ByteBuffer> variables)
           
 

Uses of UnauthorizedException in org.apache.cassandra.service
 

Methods in org.apache.cassandra.service that throw UnauthorizedException
 void ClientState.grantPermission(Permission permission, java.lang.String to, CFName on, boolean grantOption)
           
 void ClientState.hasColumnFamilyAccess(java.lang.String columnFamily, Permission perm)
          Confirms that the client thread has the given Permission in the context of the given ColumnFamily and the current keyspace.
 void ClientState.hasColumnFamilyAccess(java.lang.String keyspace, java.lang.String columnFamily, Permission perm)
           
 void ClientState.hasColumnFamilySchemaAccess(java.lang.String keyspace, Permission perm)
          Confirms that the client thread has the given Permission for the ColumnFamily list of the provided keyspace.
 void ClientState.hasKeyspaceAccess(java.lang.String keyspace, Permission perm)
           
 ResultMessage ClientState.listPermissions(java.lang.String username)
           
 void ClientState.revokePermission(Permission permission, java.lang.String from, CFName resource)
           
 



Copyright © 2012 The Apache Software Foundation