Example usage for org.springframework.security.acls.domain AclAuthorizationStrategy interface-usage

List of usage examples for org.springframework.security.acls.domain AclAuthorizationStrategy interface-usage

Introduction

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

Usage

From source file net.projectmonkey.spring.acl.util.ACLUtil.java

/**
 * 
 * Wrapper class for {@link PermissionGrantingStrategy}
 * and {@link AclAuthorizationStrategy} allowing us to
 * have a single parameter passed around rather than multiple.
 * 

From source file org.jtalks.poulpe.security.AclAuthorizationStrategyImpl.java

/**
 * In standard Spring Security implementation of the strategy it was checking a lot of stuff we didn't want to check,
 * e.g. if some Principal (User) created an object, then the other Principal couldn't change its ACLs and we were
 * getting <i>Unable to locate a matching ACE for passed permissions and SIDs</i>. In our strategy Permission will be
 * granted to any principal if it is authenticated.
 *