Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xunliu committed Oct 30, 2024
1 parent f7985a5 commit d2c8376
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ interface RoleAuthorizationPlugin {
*
* @param role The entity of the Role.
* @return IF exist return true, else return false.
* @throws AuthorizationPluginException If getting the Role encounters underlying access control system
* issues.
* @throws AuthorizationPluginException If getting the Role encounters underlying access control
* system issues.
*/
Boolean onRoleAcquired(Role role) throws AuthorizationPluginException;

Expand Down Expand Up @@ -114,5 +114,6 @@ interface RoleAuthorizationPlugin {
* @return True if the revoke was successfully removed, False if the revoke failed.
* @throws AuthorizationPluginException If revoking roles from a group encounters storage issues.
*/
Boolean onRevokedRolesFromGroup(List<Role> roles, Group group) throws AuthorizationPluginException;
Boolean onRevokedRolesFromGroup(List<Role> roles, Group group)
throws AuthorizationPluginException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ interface UserGroupAuthorizationPlugin {
*
* @param user The user entity.
* @return IF exist return true, else return false.
* @throws AuthorizationPluginException If getting the User encounters underlying access control system
* issues.
* @throws AuthorizationPluginException If getting the User encounters underlying access control
* system issues.
*/
Boolean onUserAcquired(User user) throws AuthorizationPluginException;

Expand Down Expand Up @@ -93,8 +93,8 @@ interface UserGroupAuthorizationPlugin {
*
* @param group The group entity.
* @return If exist return true, else return false.
* @throws AuthorizationPluginException If getting the Group encounters underlying access control system
* issues.
* @throws AuthorizationPluginException If getting the Group encounters underlying access control
* system issues.
*/
Boolean onGroupAcquired(Group group) throws AuthorizationPluginException;

Expand Down

0 comments on commit d2c8376

Please sign in to comment.