Authorization providers are responsible for verifying access when users want to perform certain actions, for example, through the web administration console. They are also responsible for checking permissions for users when users want to perform certain actions.
Available Authorization Providers
Custom Authorization Providers
If you wish to write a custom authorization provider for blojsom, you must implement the AuthorizationProvider interface. You can find more information about this interface from the AuthorizationProvider
javadoc API.
After writing a custom authorization provider, you will need to make it available in /WEB-INF/classes/blojsom.xml under the authorizationProvider bean ID.
<bean id="authorizationProvider" class="my.custom.namespace.CustomAuthorizationProvider"
init-method="init">
</bean>