Example usage for org.springframework.security.acls.domain EhCacheBasedAclCache EhCacheBasedAclCache

List of usage examples for org.springframework.security.acls.domain EhCacheBasedAclCache EhCacheBasedAclCache

Introduction

In this page you can find the example usage for org.springframework.security.acls.domain EhCacheBasedAclCache EhCacheBasedAclCache.

Prototype

public EhCacheBasedAclCache(Ehcache cache, PermissionGrantingStrategy permissionGrantingStrategy,
            AclAuthorizationStrategy aclAuthorizationStrategy) 

Source Link

Usage

From source file:org.createnet.raptor.auth.service.AclConfiguration.java

@Bean
public EhCacheBasedAclCache aclCache() {
    return new EhCacheBasedAclCache(aclEhCacheFactoryBean().getObject(), permissionGrantingStrategy(),
            aclAuthorizationStrategy());
}

From source file:org.bremersee.common.spring.autoconfigure.AclCacheAutoConfiguration.java

@Bean
public EhCacheBasedAclCache aclCache() {
    return new EhCacheBasedAclCache(ehCacheFactoryBean().getObject(), permissionGrantingStrategy(),
            aclAuthorizationStrategy());
}