I'm currently trying to use Role-based permission on Micro-Integrator v 7.1.0 while calling api request, i've already managed to use REST Basic AuthHandler as shown below, which works just fine.
<handlers>
<handler class="org.wso2.micro.integrator.security.handler.RESTBasicAuthHandler"/>
</handlers>
Now i want to add role permission to it, but i can't seem to find a way on how to. I found some code that worked on older versions, but apparently not on 7.1
<handler class="org.wso2.api.authorization.RoleBasedAuthorizationHandler">
<property name="roles" value="testRole"/>
</handler>
Any suggestions on how to make this work? Thanks.