org.springframework.security.access.hierarchicalroles.RoleHierarchyImpl Java Examples
The following examples show how to use
org.springframework.security.access.hierarchicalroles.RoleHierarchyImpl.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MethodSecurityConfig.java From demo-spring-security-cas with Apache License 2.0 | 5 votes |
@Bean public RoleHierarchy roleHierarchy() { RoleHierarchyImpl rhi = new RoleHierarchyImpl(); rhi.setHierarchy(AuthoritiesConstants.ADMIN + " > " + AuthoritiesConstants.USER + " " + AuthoritiesConstants.USER + " > " + AuthoritiesConstants.ANONYMOUS); return rhi; }
Example #2
Source File: WallRideSecurityConfiguration.java From wallride with Apache License 2.0 | 5 votes |
@Bean public RoleHierarchy roleHierarchy() { RoleHierarchyImpl hierarchy = new RoleHierarchyImpl(); hierarchy.setHierarchy("ROLE_ADMIN > ROLE_VIEWER"); return hierarchy; }