Example usage for org.springframework.security.acls.model AclCache interface-usage

List of usage examples for org.springframework.security.acls.model AclCache interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.acls.model AclCache interface-usage.

Usage

From source file com.sshdemo.common.security.acl.NullAclCache.java

/**
 * AclCache
 * 
 * @author wangwei
 */
public class NullAclCache implements AclCache {

From source file net.projectmonkey.spring.acl.hbase.repository.TestingInMemoryCache.java

public class TestingInMemoryCache implements AclCache {

    private final Map<Serializable, MutableAcl> cache = new HashMap<Serializable, MutableAcl>();

    @Override
    public void evictFromCache(final Serializable pk) {