Package | Description |
---|---|
com.example.groracle.DAL.DAO |
Modifier and Type | Method and Description |
---|---|
Right |
RightDAO.findRight(java.lang.String permission)
Method returning right that matches the permission given
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Right> |
RightDAO.getAllRights()
Method returning list of all Rights
|
java.util.List<Right> |
RightDAO.getRightsByRole(java.lang.String role)
Method returning rights for given role
|
java.util.List<Right> |
RightDAO.getRightsByUser(java.lang.String username)
Method providing functionality for getting all rights for given user
|
Modifier and Type | Method and Description |
---|---|
void |
RightDAO.deleteRight(Right right)
Method providing functionality for deleting right
|
java.lang.Boolean |
RightDAO.newRight(Right right)
Method providing functionality for creating new right
|
void |
RightDAO.updateRight(Right right)
Method providing functionality for updating right
|