Example usage for org.apache.shiro.realm AuthorizingRealm getAuthorizationCacheName

List of usage examples for org.apache.shiro.realm AuthorizingRealm getAuthorizationCacheName

Introduction

In this page you can find the example usage for org.apache.shiro.realm AuthorizingRealm getAuthorizationCacheName.

Prototype

public String getAuthorizationCacheName() 

Source Link

Usage

From source file:org.killbill.billing.util.glue.ShiroEhCacheInstrumentor.java

License:Apache License

public void instrument(final AuthorizingRealm realm) {
    instrument(realm.getAuthenticationCacheName());
    instrument(realm.getAuthorizationCacheName());
}