Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public interface UserRolesSQLStorage extends UserRolesStorage, SQLStorage {
boolean deleteRoleForUser_Transaction(TransactionConnection con, String userId, String role)
throws StorageQueryException;

// create a new role
void createNewRoleOrDoNothingIfExists_Transaction(TransactionConnection con, String role)
// create a new role if it doesnt exist
boolean createNewRoleOrDoNothingIfExists_Transaction(TransactionConnection con, String role)
throws StorageQueryException;

// associate a permission with a role
Expand Down