|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.accumulo.core.client.admin.SecurityOperations
public class SecurityOperations
Provides a class for managing users and permissions
| Constructor Summary | |
|---|---|
protected |
SecurityOperations()
|
| Method Summary | |
|---|---|
boolean |
authenticateUser(java.lang.String user,
byte[] password)
Verify a username/password combination is valid |
void |
changeUserAuthorizations(java.lang.String user,
Authorizations authorizations)
Set the user's record-level authorizations |
void |
changeUserPassword(java.lang.String user,
byte[] password)
Set the user's password |
void |
createUser(java.lang.String user,
byte[] password,
Authorizations authorizations)
Create a user |
void |
dropUser(java.lang.String user)
Delete a user |
Authorizations |
getUserAuthorizations(java.lang.String user)
Retrieves the user's authorizations for scanning |
void |
grantSystemPermission(java.lang.String user,
SystemPermission permission)
Grant a user a system permission |
void |
grantTablePermission(java.lang.String user,
java.lang.String table,
TablePermission permission)
Grant a user a specific permission for a specific table |
boolean |
hasSystemPermission(java.lang.String user,
SystemPermission perm)
Verify the user has a particular system permission |
boolean |
hasTablePermission(java.lang.String user,
java.lang.String table,
TablePermission perm)
Verify the user has a particular table permission |
java.util.Set<java.lang.String> |
listUsers()
Return a list of users in accumulo |
void |
revokeSystemPermission(java.lang.String user,
SystemPermission permission)
Revoke a system permission from a user |
void |
revokeTablePermission(java.lang.String user,
java.lang.String table,
TablePermission permission)
Revoke a table permission for a specific user on a specific table |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected SecurityOperations()
| Method Detail |
|---|
public void createUser(java.lang.String user,
byte[] password,
Authorizations authorizations)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to createpassword - the plaintext password for the userauthorizations - the authorizations that the user has for scanning
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to create a user
public void dropUser(java.lang.String user)
throws AccumuloException,
AccumuloSecurityException
user - the user name to delete
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to delete a user
public boolean authenticateUser(java.lang.String user,
byte[] password)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to authenticatepassword - the plaintext password for the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to ask
public void changeUserPassword(java.lang.String user,
byte[] password)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifypassword - the plaintext password for the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to modify a user
public void changeUserAuthorizations(java.lang.String user,
Authorizations authorizations)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifyauthorizations - the authorizations that the user has for scanning
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to modify a user
public Authorizations getUserAuthorizations(java.lang.String user)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to query
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to query a user
public boolean hasSystemPermission(java.lang.String user,
SystemPermission perm)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to queryperm - the system permission to check for
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to query a user
public boolean hasTablePermission(java.lang.String user,
java.lang.String table,
TablePermission perm)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to querytable - the name of the table to query aboutperm - the table permission to check for
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to query a user
public void grantSystemPermission(java.lang.String user,
SystemPermission permission)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifypermission - the system permission to grant to the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to grant a user permissions
public void grantTablePermission(java.lang.String user,
java.lang.String table,
TablePermission permission)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifytable - the name of the table to modify for the userpermission - the table permission to grant to the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to grant a user permissions
public void revokeSystemPermission(java.lang.String user,
SystemPermission permission)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifypermission - the system permission to revoke for the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to revoke a user's permissions
public void revokeTablePermission(java.lang.String user,
java.lang.String table,
TablePermission permission)
throws AccumuloException,
AccumuloSecurityException
user - the name of the user to modifytable - the name of the table to modify for the userpermission - the table permission to revoke for the user
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to revoke a user's permissions
public java.util.Set<java.lang.String> listUsers()
throws AccumuloException,
AccumuloSecurityException
AccumuloException - if a general error occurs
AccumuloSecurityException - if the user does not have permission to query users
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||