mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 14:52:24 +00:00
SEC-838: Make fields in AbstractAclProvider protected to facilitate subclass reuse.
This commit is contained in:
parent
371769740a
commit
b403216494
@ -34,20 +34,20 @@ import org.springframework.util.Assert;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DOCUMENT ME!
|
* Abstract {@link AfterInvocationProvider} which provides commonly-used ACL-related services.
|
||||||
*
|
*
|
||||||
* @author $author$
|
* @author Ben Alex
|
||||||
* @version $Revision$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractAclProvider implements AfterInvocationProvider {
|
public abstract class AbstractAclProvider implements AfterInvocationProvider {
|
||||||
//~ Instance fields ================================================================================================
|
//~ Instance fields ================================================================================================
|
||||||
|
|
||||||
private AclService aclService;
|
protected AclService aclService;
|
||||||
private Class processDomainObjectClass = Object.class;
|
protected Class processDomainObjectClass = Object.class;
|
||||||
private ObjectIdentityRetrievalStrategy objectIdentityRetrievalStrategy = new ObjectIdentityRetrievalStrategyImpl();
|
protected ObjectIdentityRetrievalStrategy objectIdentityRetrievalStrategy = new ObjectIdentityRetrievalStrategyImpl();
|
||||||
private SidRetrievalStrategy sidRetrievalStrategy = new SidRetrievalStrategyImpl();
|
protected SidRetrievalStrategy sidRetrievalStrategy = new SidRetrievalStrategyImpl();
|
||||||
private String processConfigAttribute;
|
protected String processConfigAttribute;
|
||||||
private Permission[] requirePermission = {BasePermission.READ};
|
protected Permission[] requirePermission = {BasePermission.READ};
|
||||||
|
|
||||||
//~ Constructors ===================================================================================================
|
//~ Constructors ===================================================================================================
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user