Created
November 6, 2014 12:13
-
-
Save oliverfernandez/f9dca695917bdbc8f0b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Declare an acl authorization strategy--> | |
<bean id="aclAuthorizationStrategy" class="org.springframework.security.acls.domain.AclAuthorizationStrategyImpl"> | |
<constructor-arg> | |
<list> | |
<bean class="org.springframework.security.core.authority.SimpleGrantedAuthority"> | |
<constructor-arg value="ROLE_ADMIN"/> | |
</bean> | |
<bean class="org.springframework.security.core.authority.SimpleGrantedAuthority"> | |
<constructor-arg value="ROLE_ADMIN"/> | |
</bean> | |
<bean class="org.springframework.security.core.authority.SimpleGrantedAuthority"> | |
<constructor-arg value="ROLE_ADMIN"/> | |
</bean> | |
</list> | |
</constructor-arg> | |
</bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment