Example usage for org.springframework.security.acls.jdbc AclClassIdUtils AclClassIdUtils

List of usage examples for org.springframework.security.acls.jdbc AclClassIdUtils AclClassIdUtils

Introduction

In this page you can find the example usage for org.springframework.security.acls.jdbc AclClassIdUtils AclClassIdUtils.

Prototype

public AclClassIdUtils() 

Source Link

Usage

From source file:org.springframework.security.acls.jdbc.JdbcAclService.java

public JdbcAclService(JdbcOperations jdbcOperations, LookupStrategy lookupStrategy) {
    Assert.notNull(jdbcOperations, "JdbcOperations required");
    Assert.notNull(lookupStrategy, "LookupStrategy required");
    this.jdbcOperations = jdbcOperations;
    this.lookupStrategy = lookupStrategy;
    this.aclClassIdUtils = new AclClassIdUtils();
}